m201029_200000_keychain_link_provideruid   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A providerRecordQuery() 0 3 1
1
<?php
2
3
namespace flipbox\saml\sp\migrations;
4
5
use craft\db\ActiveQuery;
6
use flipbox\saml\sp\records\ProviderRecord;
7
8
/**
9
 */
10
class m201029_200000_keychain_link_provideruid extends
11
    \flipbox\saml\core\migrations\m201029_200000_keychain_link_provideruid
12
{
13
14
    /**
15
     * @return ActiveQuery
16
     */
17
    protected function providerRecordQuery() {
18
        return ProviderRecord::find();
19
    }
20
}
21