gitea_issues_exporter/app/Console/Kernel.php

32 lines
662 B
PHP
Raw Normal View History

2023-10-05 11:54:33 +02:00
<?php
namespace App\Console;
use App\Console\Commands\csvExport;
use App\Http\Controllers\GiteaApiController\GiteaExport;
use Dotenv\Dotenv;
2023-10-05 11:54:33 +02:00
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 = [
csvExport::class,
2023-10-05 11:54:33 +02:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
}
}