server/src/app/Console/Kernel.php
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 24 Jun 2016 02:07:09 +0200
changeset 204 dd969e178944
parent 154 ded3cf22eef8
permissions -rw-r--r--
Fix linting, remove logs and dead code

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