AbstractController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 9
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
use craft\web\Controller;
7
use flipbox\saml\core\containers\UtilizeSaml2Container;
8
use flipbox\saml\core\EnsureSAMLPlugin;
9
10
abstract class AbstractController extends Controller implements EnsureSAMLPlugin, UtilizeSaml2Container
11
{
12
13
    public function init()
14
    {
15
        parent::init();
16
        $this->loadContainer();
17
    }
18
}
19