| 1 | <?php |
||
| 16 | class CheckUserStatus |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var \Longman\Platfourm\Contracts\Auth\AuthUserService |
||
| 21 | */ |
||
| 22 | protected $authService; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * CheckUserStatus constructor. |
||
| 26 | * |
||
| 27 | * @param \Longman\Platfourm\Contracts\Auth\AuthUserService $authService |
||
| 28 | */ |
||
| 29 | public function __construct(AuthUserServiceContract $authService) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param $request |
||
| 36 | * @param \Closure $next |
||
| 37 | * @return \Illuminate\Http\RedirectResponse |
||
| 38 | */ |
||
| 39 | public function handle($request, Closure $next) |
||
| 50 | } |
||
| 51 |