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

getProviderTableName()   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\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