1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 11:52:29 +01:00
freescout/app/Listeners/LogLockout.php

36 lines
690 B
PHP
Raw Normal View History

2018-07-08 09:39:12 +02:00
<?php
namespace App\Listeners;
use Illuminate\Auth\Events\Lockout;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class LogLockout
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param Lockout $event
* @return void
*/
public function handle(Lockout $event)
{
activity()
->causedBy($event->user)
->withProperties(['ip' => app('request')->ip()])
->useLog(\App\ActivityLog::NAME_USER)
->log(\App\ActivityLog::DESCRIPTION_USER_LOCKED);
}
}