Skip to content

Commit 52f68e5

Browse files
Merge branch '6.3' into 6.4
* 6.3: [Finder] Fix initial directory is opened twice typo fix Fix test Fix some return types in tests
2 parents 7478e5a + 9cdc0f4 commit 52f68e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/EventListener/ErrorListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public function getParameterOption($values, $default = false, $onlyParams = fals
140140
{
141141
}
142142

143-
public function parse()
143+
public function parse(): void
144144
{
145145
}
146146

Tests/Output/OutputTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public function clear()
182182
$this->output = '';
183183
}
184184

185-
protected function doWrite(string $message, bool $newline)
185+
protected function doWrite(string $message, bool $newline): void
186186
{
187187
$this->output .= $message.($newline ? "\n" : '');
188188
}

0 commit comments

Comments
 (0)