Remove unnecessary brackets in RunTasks

fixes #92
This commit is contained in:
Jakob 2016-09-26 13:59:18 +01:00 committed by GitHub
parent 231bc79155
commit 2ec7fcc3ab

View file

@ -67,7 +67,7 @@ class RunTasks extends Command
*/ */
public function handle() public function handle()
{ {
$tasks = Models\Task::where('queued', 0)->where('active', 1)->where('next_run', '<=', (Carbon::now())->toAtomString())->get(); $tasks = Models\Task::where('queued', 0)->where('active', 1)->where('next_run', '<=', Carbon::now()->toAtomString())->get();
$this->info(sprintf('Preparing to queue %d tasks.', count($tasks))); $this->info(sprintf('Preparing to queue %d tasks.', count($tasks)));
$bar = $this->output->createProgressBar(count($tasks)); $bar = $this->output->createProgressBar(count($tasks));