| Total Complexity | 6 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class LogsOutBannedUser |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * The Guard implementation. |
||
| 28 | * |
||
| 29 | * @var \Illuminate\Contracts\Auth\Guard |
||
| 30 | */ |
||
| 31 | protected $auth; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param \Illuminate\Contracts\Auth\Guard $auth |
||
| 35 | */ |
||
| 36 | public function __construct(Guard $auth) |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Handle an incoming request. |
||
| 43 | * |
||
| 44 | * @param \Illuminate\Http\Request $request |
||
| 45 | * @param \Closure $next |
||
| 46 | * @return mixed |
||
| 47 | * @throws \Exception |
||
| 48 | */ |
||
| 49 | public function handle($request, Closure $next) |
||
| 67 |