forked from miguel456/rbrecruiter
38 lines
812 B
PHP
38 lines
812 B
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Events\ApplicationDeniedEvent;
|
|
use App\Notifications\ApplicationDenied;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class DenyUser
|
|
{
|
|
/**
|
|
* Create the event listener.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param ApplicationDeniedEvent $event
|
|
* @return void
|
|
*/
|
|
public function handle(ApplicationDeniedEvent $event)
|
|
{
|
|
$event->application->setStatus('DENIED');
|
|
Log::info('User ' . $event->application->user->name . ' just had their application denied.');
|
|
|
|
$event->application->user->notify(new ApplicationDenied($event->application));
|
|
|
|
}
|
|
}
|