Pruebas con queue ! intento de configuracion de ssl tambien

This commit is contained in:
2025-01-04 18:46:50 -03:00
parent c8458a5dd2
commit 5158c888d2
20 changed files with 191 additions and 51 deletions

21
app/Jobs/QueueTest.php Normal file
View 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");
}
}