From 68dcc82fe7f6c7a0f1bcc7e5dd0bf6fffb19cd2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Pluchino?= Date: Wed, 15 Feb 2017 16:35:20 +0100 Subject: [PATCH] Update console output style in verbose mode --- Repository/Util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Repository/Util.php b/Repository/Util.php index dba97da5..7b784b54 100644 --- a/Repository/Util.php +++ b/Repository/Util.php @@ -120,7 +120,7 @@ public static function getArrayValue(array $array, $name, $default = null) protected static function writeAddRepository(IOInterface $io, $name) { if ($io->isVerbose()) { - $io->write('Adding VCS repository '.$name.''); + $io->write('Adding VCS repository '.$name.''); } } }