Completed
Push — master ( b09517...57901d )
by
unknown
18:40
created

VariablesTrait::getBaseVariables()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 9.8666
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * @copyright  Copyright (c) Flipbox Digital Limited
5
 */
6
7
namespace flipbox\saml\core\controllers\cp\view\metadata;
8
9
use Craft;
10
use craft\elements\User;
11
use craft\helpers\UrlHelper;
12
use flipbox\keychain\KeyChain;
13
use flipbox\saml\core\AbstractPlugin;
14
use flipbox\saml\core\helpers\MappingHelper;
15
use flipbox\saml\core\models\SettingsInterface;
16
use flipbox\saml\core\records\ProviderInterface;
17
18
/**
19
 * Trait VariablesTrait
20
 * @package flipbox\saml\core\controllers\cp\view\metadata
21
 * @method AbstractPlugin getPlugin
22
 */
23
trait VariablesTrait
24
{
25
26
}
27