getParameter('booleanOption', false); if ($booleanOption) { return 'A Sample Task With Parameters [booleanOption=true]'; } else { return 'A Sample Task With Parameters [booleanOption=false]'; } } public function run() { if ($this->getParameter('booleanOption', false)) { return true; } else { return false; } } }