Completed
Push — master ( 1fe696...91c058 )
by Damien
04:44
created

ExternalIdentity::getStaticHtml()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 17

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 3.1852

Importance

Changes 0
Metric Value
dl 0
loc 17
ccs 3
cts 9
cp 0.3333
rs 9.7
c 0
b 0
f 0
cc 2
nc 2
nop 2
crap 3.1852
1
<?php
2
3
namespace flipbox\saml\sp\fields;
4
5
use craft\base\ElementInterface;
6
use craft\helpers\UrlHelper;
7
use flipbox\saml\core\fields\AbstractExternalIdentity;
8
use flipbox\saml\sp\traits\SamlPluginEnsured;
9
use yii\db\Query;
10
11
class ExternalIdentity extends AbstractExternalIdentity
12
{
13
14
    use SamlPluginEnsured;
15
}
16