Page MenuHomePhorge

Kernel.php
No OneTemporary

Authored By
Unknown
Size
964 B
Referenced Files
None
Subscribers
None

Kernel.php

<?php
namespace App\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 = [
//
];
/**
* Define the application's command schedule.
*
* @param Schedule $schedule The application's command schedule
*
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')
// ->hourly();
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__ . '/Commands');
if (\app('env') != 'production') {
$this->load(__DIR__ . '/Development');
}
include base_path('routes/console.php');
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 12:58 PM (1 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9c/09/aae00797df482e3932e13f9ba5fa
Default Alt Text
Kernel.php (964 B)

Event Timeline