author | ymh <ymh.work@gmail.com> |
Thu, 02 Jun 2016 18:24:19 +0200 | |
changeset 168 | 17f10b56c079 |
parent 154 | ded3cf22eef8 |
permissions | -rw-r--r-- |
<?php namespace CorpusParole\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ 'CorpusParole\Console\Commands\Inspire', 'CorpusParole\Console\Commands\ImportCocoonRDF', 'CorpusParole\Console\Commands\IndexDocuments', 'CorpusParole\Console\Commands\ManageHandles', ]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule */ protected function schedule(Schedule $schedule) { $schedule->command('inspire') ->hourly(); } }