* @author Joseph Cohen * @author James Brooks */ class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ BeaconCommand::class, DemoMetricPointSeederCommand::class, DemoSeederCommand::class, ]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('cachet:beacon')->twiceDaily(0, 12); } }