3cf19d8656
This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io). --- For more information, click [here](https://github.styleci.io/analyses/8wKwbZ).
16 lines
305 B
PHP
16 lines
305 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
class CheckUserVerified
|
|
{
|
|
public function handle($request, \Closure $next)
|
|
{
|
|
if (option('require_verification') && ! auth()->user()->verified) {
|
|
abort(403, trans('auth.check.verified'));
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|