Browse Source

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

Remove unused function argument
Mark Story 12 years ago
parent
commit
bc91375ef5
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,