From e912c9cc0f7749f1cceba60e5ef8ad0ab3550fd2 Mon Sep 17 00:00:00 2001 From: AD7six Date: Thu, 20 Mar 2014 10:22:31 +0000 Subject: [PATCH] settings are not used when creating a task --- src/Console/TaskRegistry.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Console/TaskRegistry.php b/src/Console/TaskRegistry.php index 7b023262b37..2603a58a478 100644 --- a/src/Console/TaskRegistry.php +++ b/src/Console/TaskRegistry.php @@ -75,10 +75,9 @@ protected function _throwMissingClassError($class, $plugin) { * * @param string $class The classname to create. * @param string $alias The alias of the task. - * @param array $settings An array of settings to use for the task. * @return Component The constructed task class. */ - protected function _create($class, $alias, $settings) { + protected function _create($class, $alias) { return new $class( $this->_Shell->stdout, $this->_Shell->stderr,