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

AbstractController::init()   A

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
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
}