Projeto

Geral

Perfil

Estatísticas
| Branch: | Revisão:

expressolivretools / app / Console / Kernel.php @ ab2f5151

Histórico | Ver | Anotar | Baixar (1,02 KB)

1
<?php
2

    
3
namespace App\Console;
4

    
5
use Illuminate\Console\Scheduling\Schedule;
6
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
7

    
8
class Kernel extends ConsoleKernel
9
{
10
    /**
11
     * The Artisan commands provided by your application.
12
     *
13
     * @var array
14
     */
15
    protected $commands = [
16
        
17
        // Commands Expresso
18
        \App\Console\Commands\Expresso\GetUsersOULdap::class,
19
        \App\Console\Commands\Expresso\SieveGetUid::class,
20
        \App\Console\Commands\Expresso\SieveGetListFile::class,
21
        \App\Console\Commands\Expresso\CyrusCredentialFile::class,
22
        
23
        // Commands SOGO
24
        \App\Console\Commands\Sogo\Preferences::class,
25
        \App\Console\Commands\Sogo\SieveSetListFile::class,
26
        
27
        // TESTE
28
        \App\Console\Commands\Teste::class
29
    ];
30

    
31
    /**
32
     * Define the application's command schedule.
33
     *
34
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
35
     * @return void
36
     */
37
    protected function schedule(Schedule $schedule)
38
    {
39
        //
40
    }
41
}