PHP Classes

File: server/app/Console/Kernel.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/app/Console/Kernel.php   Download  
File: server/app/Console/Kernel.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 681 bytes
 

Contents

Class file image Download
<?php

namespace App\Console;

use
Illuminate\Console\Scheduling\Schedule;
use
Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class
Kernel extends ConsoleKernel
{
   
/**
     * Define the application's command schedule.
     *
     * @param \Illuminate\Console\Scheduling\Schedule $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');

        require
base_path('routes/console.php');
    }
}