📸 Some initial tests

This commit is contained in:
Dan Jones 2022-02-27 19:50:03 -06:00
commit cec63567c5
2 changed files with 81 additions and 0 deletions

View file

@ -0,0 +1,45 @@
<?php
namespace App\Commands;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
use App\Jobs\SayHello;
class SayHelloLater extends Command
{
/**
* The signature of the command.
*
* @var string
*/
protected $signature = 'say-hello-later';
/**
* The description of the command.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
SayHello::dispatch();
}
/**
* Define the command's schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
public function schedule(Schedule $schedule): void
{
// $schedule->command(static::class)->everyMinute();
}
}