AdminController::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 8
ccs 0
cts 6
cp 0
crap 2
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/*
3
 * This file is part of the Laravel Platfourm package.
4
 *
5
 * (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Longman\Platfourm\Http\Controllers;
12
13
abstract class AdminController extends Controller
14
{
15
16
    public function __construct()
17
    {
18
        parent::__construct();
19
20
        // Set scope namespace
21
        $admin_prefix         = config('cms.admin_prefix', 'admin');
22
        $this->scopeNamespace = $admin_prefix;
23
    }
24
25
}
26