server/src/app/Console/Kernel.php
author ymh <ymh.work@gmail.com>
Fri, 04 Mar 2016 19:18:28 +0100
changeset 139 8d688175513a
parent 24 de47e8f66e8b
child 154 ded3cf22eef8
permissions -rw-r--r--
add proxy for bnf completion and sparql request + upgrade kernel + route

<?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',
    ];

    /**
     * Define the application's command schedule.
     *
     * @param \Illuminate\Console\Scheduling\Schedule $schedule
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('inspire')
                 ->hourly();
    }
}