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

m190502_200148_encryption_settings   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 getProviderTableName() 0 4 1
1
<?php
2
3
namespace flipbox\saml\sp\migrations;
4
5
use flipbox\saml\sp\records\ProviderRecord;
6
7
/**
8
 * m190502_200148_encryption_settings migration.
9
 */
10
class m190502_200148_encryption_settings extends \flipbox\saml\core\migrations\m190502_200148_encryption_settings
11
{
12
13
    protected static function getProviderTableName()
14
    {
15
        return ProviderRecord::tableName();
16
    }
17
}
18