Completed
Push — master ( c3456a...b4bda7 )
by Damien
04:06 queued 38s
created

m180812_200148_add_label_and_mapping::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
1
<?php
2
3
namespace flipbox\saml\sp\migrations;
4
5
use flipbox\saml\sp\records\ProviderRecord;
6
use flipbox\saml\sp\traits\SamlPluginEnsured;
7
8
/**
9
 * m180812_200148_add_provider_label migration.
10
 */
11
class m180812_200148_add_label_and_mapping extends \flipbox\saml\core\migrations\m180812_200148_add_label_and_mapping
12
{
13
    use SamlPluginEnsured;
14
15
    public function init()
16
    {
17
        parent::init();
18
    }
19
20
    /**
21
     * @inheritdoc
22
     */
23
    protected static function getProviderTableName()
24
    {
25
        return ProviderRecord::tableName();
26
    }
27
}
28