expressolivretools / app / Console / Kernel.php @ ab2f5151
Histórico | Ver | Anotar | Baixar (1,02 KB)
1 | 3e379cec | Alexandre Correia | <?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 | 68c328a2 | Alexandre Correia | |
17 | // Commands Expresso
|
||
18 | \App\Console\Commands\Expresso\GetUsersOULdap::class, |
||
19 | 3e379cec | Alexandre Correia | \App\Console\Commands\Expresso\SieveGetUid::class, |
20 | ab2f5151 | Alexandre Correia | \App\Console\Commands\Expresso\SieveGetListFile::class, |
21 | \App\Console\Commands\Expresso\CyrusCredentialFile::class, |
||
22 | 68c328a2 | Alexandre Correia | |
23 | // Commands SOGO
|
||
24 | \App\Console\Commands\Sogo\Preferences::class, |
||
25 | ab2f5151 | Alexandre Correia | \App\Console\Commands\Sogo\SieveSetListFile::class, |
26 | 68c328a2 | Alexandre Correia | |
27 | // TESTE
|
||
28 | \App\Console\Commands\Teste::class |
||
29 | 3e379cec | Alexandre Correia | ]; |
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 | } |