From 455f9a59a846fbfa6ed614a33fc9e1f087d0e5f2 Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Sun, 31 May 2015 11:20:18 +0200 Subject: [PATCH] Remove unrequired parameters from CLI command constructors. --- PHPCI/Command/RebuildCommand.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PHPCI/Command/RebuildCommand.php b/PHPCI/Command/RebuildCommand.php index d4dee396..14a90dfd 100644 --- a/PHPCI/Command/RebuildCommand.php +++ b/PHPCI/Command/RebuildCommand.php @@ -47,11 +47,10 @@ class RebuildCommand extends Command /** * @param \Monolog\Logger $logger - * @param string $name */ public function __construct(Logger $logger) { - parent::__construct($name); + parent::__construct(); $this->logger = $logger; }