Completed
Push — master ( 9b9020...8f5910 )
by Razon
02:07
created

Module   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 3 1
1
<?php
2
3
namespace App\Http\Api\Frontend\Module\V1;
4
5
use App\Http\Api\Frontend\Module as ApiModule;
6
7
/**
8
 * v1 module definition class
9
 */
10
class Module extends ApiModule
11
{
12
    /**
13
     * {@inheritdoc}
14
     */
15
    public $controllerNamespace = 'App\Http\Api\Frontend\Module\V1\Controller';
16
17
    /**
18
     * {@inheritdoc}
19
     */
20
    public function init()
21
    {
22
        parent::init();
23
24
        // custom initialization code goes here
25
    }
26
}
27