Page MenuHomePhorge

Kernel.php
No OneTemporary

Authored By
Unknown
Size
859 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');
include base_path('routes/console.php');
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:11 PM (6 d, 13 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5e/b2/70ce33ebf2b9dad5bad074aa0c0d
Default Alt Text
Kernel.php (859 B)

Event Timeline