renames to camelcase

This commit is contained in:
jygaulier
2012-05-07 11:38:31 +02:00
parent 0e03c28f48
commit b4e691c1db

View File

@@ -63,14 +63,11 @@ class module_console_schedulerStart extends Command
require_once __DIR__ . '/../../../../lib/bootstrap.php';
$scheduler = new task_Scheduler();
$scheduler->run($zinput, $output); //, !$input->getOption('nolog'), !$input->getOption('notasklog'));
try {
$scheduler = new task_Scheduler();
$scheduler->run($output, true);
$scheduler->run($zinput, $output);
} catch (\Exception $e) {
return 1;
return $e->getCode();
}
}
}