1 | <?php |
||
13 | class Kernel extends ConsoleKernel |
||
14 | { |
||
15 | /** |
||
16 | * The Artisan commands provided by your application. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $commands = [ |
||
21 | // Commands\PhotoFinder\ChangeUserPassword::class, |
||
22 | // Commands\PhotoFinder\User::class, |
||
23 | // Commands\PhotoFinder\CreateRoles::class, |
||
24 | // Commands\PhotoFinder\DeleteDetachedPhotosOlderThanWeek::class, |
||
25 | // Commands\PhotoFinder\DeleteUnusedObjectsFromPhotoStorage::class, |
||
26 | // Commands\PhotoFinder\GeneratePhotosMetadata::class, |
||
27 | // Commands\PhotoFinder\GenerateRestApiDocumentation::class, |
||
28 | // Commands\PhotoFinder\SendWeeklySubscriptionMails::class, |
||
29 | // Commands\PhotoFinder\TestScheduler::class, |
||
30 | |||
31 | // Commands\Photoacompanhante::class, |
||
32 | |||
33 | |||
34 | // \Laravel\Tinker\Console\TinkerCommand::class, |
||
35 | |||
36 | // /** |
||
37 | // * Me |
||
38 | // */ |
||
39 | // Commands\Explorer\InstagramGetAll::class, |
||
40 | // Commands\Import\Data::class, |
||
41 | // Commands\Import\Social::class, |
||
42 | ]; |
||
43 | |||
44 | /** |
||
45 | * Define the application's command schedule. |
||
46 | * |
||
47 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
48 | * @return void |
||
49 | */ |
||
50 | protected function schedule(Schedule $schedule) |
||
96 | |||
97 | /** |
||
98 | * Register the Closure based commands for the application. |
||
99 | * |
||
100 | * @return void |
||
101 | */ |
||
102 | protected function commands() |
||
106 | } |
||
107 |