schedule = new Schedule(); } protected function run() { $this->schedule->command('catch:cache')->everyThirtySeconds(); $this->schedule->command('test')->everyTenSeconds(); } public function tasks() { $this->run(); return $this->schedule->getCronTask(); } }