server/src/app/Console/Kernel.php
author ymh <ymh.work@gmail.com>
Wed, 05 Oct 2016 02:31:25 +0200
changeset 321 aefaad270b9b
parent 154 ded3cf22eef8
permissions -rw-r--r--
reimplement ThemeController using ES requests to be able to sort by label

<?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();
    }
}