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

VariablesTrait::getActions()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 21

Duplication

Lines 0
Ratio 0 %

Importance

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