Miguel Nogueira
4eb115d165
This reverts pull request #6. > This pull request applies code style fixes from an analysis carried out by [StyleCI](https://bitbucket.styleci.io). > > For more information, click [here](https://bitbucket.styleci.io/analyses/a2Jl7D).
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));
|
|
|
|
}
|
|
}
|