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

m200806_200000_provider_identity_constraint   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getIdentityTableName() 0 4 1
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