Browse Source

settings are not used when creating a task

AD7six 12 years ago
parent
commit
e912c9cc0f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/Console/TaskRegistry.php

+ 1 - 2
src/Console/TaskRegistry.php

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