Completed
Push — master ( 8927df...f70445 )
by Abdelrahman
02:05
created

AuthenticatedController::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php
2
3
/*
4
 * NOTICE OF LICENSE
5
 *
6
 * Part of the Rinvex Fort Package.
7
 *
8
 * This source file is subject to The MIT License (MIT)
9
 * that is bundled with this package in the LICENSE file.
10
 *
11
 * Package: Rinvex Fort Package
12
 * License: The MIT License (MIT)
13
 * Link:    https://rinvex.com
14
 */
15
16
namespace Rinvex\Fort\Http\Controllers;
17
18
class AuthenticatedController extends AbstractController
19
{
20
    /**
21
     * Create a new manage persistence controller instance.
22
     */
23
    public function __construct()
24
    {
25
        $this->middleware($this->getAuthMiddleware(), ['except' => $this->middlewareWhitelist]);
26
    }
27
}
28