Completed
Push — develop ( 3b0920...64bbf6 )
by Abdelrahman
01:51
created

AuthenticatedController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Cortex\Foundation\Http\Controllers;
6
7
class AuthenticatedController extends AbstractController
8
{
9
    /**
10
     * Create a new authenticated controller instance.
11
     */
12
    public function __construct()
13
    {
14
        parent::__construct();
15
16
        $this->middleware($this->getAuthMiddleware())->except($this->middlewareWhitelist]);
0 ignored issues
show
Bug introduced by
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected ']', expecting ',' or ')'
Loading history...
17
    }
18
}
19