📸 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();
}
}

36
app/Jobs/SayHello.php Normal file
View file

@ -0,0 +1,36 @@
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class SayHello implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
echo 'Hello, from ', __CLASS__, PHP_EOL;
passthru ('sleep 10; echo Hello, from echo in ' . escapeshellarg(__CLASS__));
}
}