Completed
Push — master ( 4b394d...0ca4f0 )
by Damien
09:55
created

AbstractController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 5 1
1
<?php
2
3
4
namespace flipbox\saml\core\controllers\messages;
5
6
7
use craft\web\Controller;
8
use flipbox\saml\core\containers\UtilizeSaml2Container;
9
use flipbox\saml\core\EnsureSAMLPlugin;
10
11
abstract class AbstractController extends Controller implements EnsureSAMLPlugin,UtilizeSaml2Container
12
{
13
14
    public function init()
15
    {
16
        parent::init();
17
        $this->loadContainer();
18
    }
19
20
}