mirror of
https://github.com/exane/not-gwent-online
synced 2025-07-24 12:23:30 +00:00
assets
client
public
server
site
client
public
server
app
Console
Commands
Kernel.php
Events
Exceptions
Http
Jobs
Listeners
Providers
User.php
bootstrap
config
database
storage
tests
.env.example
artisan
composer.json
composer.lock
phpspec.yml
phpunit.xml
server.php
test
.gitignore
gulpfile.js
package.json
31 lines
649 B
PHP
Executable File
31 lines
649 B
PHP
Executable File
<?php
|
|
|
|
namespace Gwent\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 = [
|
|
\Gwent\Console\Commands\Inspire::class,
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
$schedule->command('inspire')
|
|
->hourly();
|
|
}
|
|
}
|