AbstractController::init()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
nc 1
cc 1
nop 0
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