29 lines
625 B
PHP
29 lines
625 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Providers\ApplicationDeploymentFinished;
|
|
use Illuminate\Contracts\Events\ShouldHandleEventsAfterCommit;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
class SendDeploymentNotification implements ShouldQueue, ShouldHandleEventsAfterCommit
|
|
{
|
|
use InteractsWithQueue;
|
|
/**
|
|
* Create the event listener.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*/
|
|
public function handle(ApplicationDeploymentFinished $event): void
|
|
{
|
|
ray('SendDeploymentNotification');
|
|
}
|
|
}
|