for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace DoeSangue\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 = [
\DoeSangue\Console\Commands\MakeModelCommand::class
];
* Define the application's command schedule.
* @param \Illuminate\Console\Scheduling\Schedule $schedule
protected function schedule(Schedule $schedule)
// $schedule->command('inspire')
// ->hourly();
}
* Register the commands for the application.
protected function commands()
$this->load(__DIR__.'/Commands');
include base_path('routes/console.php');