From 4685828009f9a34ad5efd09e8d12ded22d64ad46 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Sun, 28 May 2023 18:05:56 -0300 Subject: [PATCH] Add pendign argument Signed-off-by: Vitor Mattos --- src/RunServerListener.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/RunServerListener.php b/src/RunServerListener.php index abf3f5c..2972e2b 100644 --- a/src/RunServerListener.php +++ b/src/RunServerListener.php @@ -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; }