8000 [Process] Fix return type · symfony/symfony@ca52396 · GitHub
[go: up one dir, main page]

Skip to content

Commit ca52396

Browse files
[Process] Fix return type
1 parent 20cefc8 commit ca52396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Process/PhpSubprocess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static function fromShellCommandline(string $command, string $cwd = null,
7878
throw new LogicException(sprintf('The "%s()" method cannot be called when using "%s".', __METHOD__, self::class));
7979
}
8080

81-
public function start(callable $callback = null, array $env = [])
81+
public function start(callable $callback = null, array $env = []): void
8282
{
8383
if (null === $this->getCommandLine()) {
8484
throw new RuntimeException('Unable to find the PHP executable.');

0 commit comments

Comments
 (0)
0