Browse Source

Commented code should not be commited.

1.0
Andrés Montañez 10 years ago
parent
commit
aaf92d5001
  1. 6
      docs/example-config/.mage/tasks/TaskWithParameters.php

6
docs/example-config/.mage/tasks/TaskWithParameters.php

@ -18,8 +18,10 @@ class TaskWithParameters extends AbstractTask
public function run() public function run()
{ {
//throw new Mage_Task_SkipException; if ($this->getParameter('booleanOption', false)) {
//return false;
return true; return true;
} else {
return false;
}
} }
} }
Loading…
Cancel
Save