ActivatedMinistryMiddleware::handle()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 4
c 1
b 0
f 0
nc 2
nop 2
dl 0
loc 6
rs 10
1
<?php
2
3
namespace FaithGen\SDK\Http\Middleware;
4
5
use Closure;
6
7
class ActivatedMinistryMiddleware
8
{
9
    /**
10
     * Handle an incoming request.
11
     *
12
     * @param  \Illuminate\Http\Request  $request
13
     * @param  \Closure  $next
14
     * @return mixed
15
     */
16
    public function handle($request, Closure $next)
17
    {
18
        if (auth(config('faithgen-sdk.guard'))->user()->activation->active) {
0 ignored issues
show
Bug introduced by
Accessing activation on the interface Illuminate\Contracts\Auth\Authenticatable suggest that you code against a concrete implementation. How about adding an instanceof check?
Loading history...
19
            return $next($request);
20
        } else {
21
            abort(403, 'You need to activate you account first to access this part');
22
        }
23
    }
24
}
25