Initial commit responding with current version info from gitlab

This commit is contained in:
2023-03-03 10:01:23 +11:00
commit 2f9ea10be1
39 changed files with 8320 additions and 0 deletions

View File

29
app/Console/Kernel.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Laravel\Lumen\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 \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
//
}
}