Completed
Push — master ( 0ee3b2...b21ccb )
by Damien
06:19 queued 05:11
created

getIdentityTableName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace flipbox\saml\sp\migrations;
4
5
use flipbox\saml\core\migrations\m200806_200000_provider_identity_constraint as abstractMigration;
6
use flipbox\saml\sp\records\ProviderIdentityRecord;
7
8
/**
9
 */
10
class m200806_200000_provider_identity_constraint extends abstractMigration
11
{
12
13
    protected static function getIdentityTableName()
14
    {
15
        return ProviderIdentityRecord::tableName();
16
    }
17
}
18