Skip to content

Commit 39cbf15

Browse files
wouterjnicolas-grekas
authored andcommitted
Add remaining missing return types to safe methods
1 parent 198ae32 commit 39cbf15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Process.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ public function stop(float $timeout = 10, int $signal = null): ?int
912912
*
913913
* @internal
914914
*/
915-
public function addOutput(string $line)
915+
public function addOutput(string $line): void
916916
{
917917
$this->lastOutputTime = microtime(true);
918918

@@ -926,7 +926,7 @@ public function addOutput(string $line)
926926
*
927927
* @internal
928928
*/
929-
public function addErrorOutput(string $line)
929+
public function addErrorOutput(string $line): void
930930
{
931931
$this->lastOutputTime = microtime(true);
932932

0 commit comments

Comments
 (0)