From 2b9832c08f180e505c7cd9dd6fb503bedd48fd23 Mon Sep 17 00:00:00 2001 From: Robin Devitt Date: Fri, 20 May 2022 11:12:21 +0200 Subject: [PATCH] Fix syntax errors --- inc/command/class-command.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/command/class-command.php b/inc/command/class-command.php index 7b395f4..14d3633 100644 --- a/inc/command/class-command.php +++ b/inc/command/class-command.php @@ -813,7 +813,7 @@ protected function start_browser_container( InputInterface $input, OutputInterfa throw new InvalidArgumentException( sprintf( 'Browser "%s" is unavailable, available browsers are: %s.', $browser, - implode( ', ', $available_browsers ), + implode( ', ', $available_browsers ) ) ); } @@ -832,7 +832,7 @@ protected function start_browser_container( InputInterface $input, OutputInterfa $columns, $lines, $this->get_project_subdomain(), - $browser, + $browser ); passthru( $base_command, $return_var );