Skip to content

Commit

Permalink
Add pendign argument
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <vitor@php.rio>
  • Loading branch information
vitormattos committed May 28, 2023
1 parent cb41c1d commit 4685828
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/RunServerListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ class RunServerListener implements EventSubscriberInterface
private string $runAs = '';
private static self $instance;

public function __construct(?int $verbose, string $rootDir, string $host)
public function __construct(?int $verbose, string $rootDir, string $host, string $runAs)
{
$this->verbose = $verbose;
$this->rootDir = $rootDir;
$this->runAs = $runAs;
self::$host = $host;
self::$instance = $this;
}
Expand Down

0 comments on commit 4685828

Please sign in to comment.