From b178d490109f02a53c4246c4a0b136dbd8a6ea0f Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 18 Apr 2019 08:34:52 +1000 Subject: [PATCH] Remove trailing comma on function call. --- inc/Composer/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Composer/Command.php b/inc/Composer/Command.php index 0f831fd1..8bcda0cf 100644 --- a/inc/Composer/Command.php +++ b/inc/Composer/Command.php @@ -195,7 +195,7 @@ protected function shell( InputInterface $input, OutputInterface $output ) { 'cd %s; VOLUME=%s COMPOSE_PROJECT_NAME=%s docker-compose exec php /bin/bash', 'vendor/humanmade/local-server/docker', getcwd(), - basename( getcwd() ), + basename( getcwd() ) ), $return_val ); return $return_val;