Skip to content

Commit

Permalink
Comply with parent return type
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Apr 4, 2024
1 parent 290ffc0 commit 9dcba4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ProcessBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function setLogger($logger)
/**
* @inheritDoc
*/
public function start(callable $callback = null, array $env = [])
public function start(callable $callback = null, array $env = []): void
{
$cmd = $this->getCommandLine();
if ($this->isSimulated()) {
Expand Down
2 changes: 1 addition & 1 deletion src/SiteProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function getCommandLine(): string
/**
* @inheritDoc
*/
public function start(callable $callback = null, array $env = [])
public function start(callable $callback = null, array $env = []): void
{
$cmd = $this->getCommandLine();
parent::start($callback, $env);
Expand Down

0 comments on commit 9dcba4b

Please sign in to comment.