server/src/app/Console/Kernel.php
author Chloe Laisne <chloe.laisne@gmail.com>
Tue, 05 Jul 2016 01:30:27 +0200
changeset 227 5c9250f55f4b
parent 154 ded3cf22eef8
permissions -rw-r--r--
Basic notice logic from query parameters Playlist component notice open/close styles

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