Pruebas con queue ! intento de configuracion de ssl tambien
This commit is contained in:
21
app/Jobs/QueueTest.php
Normal file
21
app/Jobs/QueueTest.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
class QueueTest implements ShouldQueue
|
||||
{
|
||||
use Queueable;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
public function handle(): void
|
||||
{
|
||||
Log::info("Probando que la queue funciona correctamente");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user