Browse Source

Merge pull request #3075 from AD7six/3.0-config-console

Underp!
José Lorenzo Rodríguez 12 years ago
parent
commit
09c6680bb9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Console/TaskRegistry.php

+ 2 - 1
src/Console/TaskRegistry.php

@@ -75,9 +75,10 @@ class TaskRegistry extends ObjectRegistry {
  *
  * @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) {
+	protected function _create($class, $alias, $settings) {
 		return new $class(
 			$this->_Shell->stdout,
 			$this->_Shell->stderr,