GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( d461c4...ed1ac7 )
by Damien
14:17
created

m201029_200000_keychain_link_provideruid   A

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 4 1
1
<?php
2
3
namespace flipbox\saml\idp\migrations;
4
5
use craft\db\ActiveQuery;
6
use flipbox\saml\idp\records\ProviderRecord;
7
8
/**
9
 */
10
class m201029_200000_keychain_link_provideruid extends \flipbox\saml\core\migrations\m201029_200000_keychain_link_provideruid
11
{
12
13
    /**
14
     * @return ActiveQuery
15
     */
16
    protected function providerRecordQuery()
17
    {
18
        return ProviderRecord::find();
19
    }
20
}
21