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 ( bf1ef2...cd89f1 )
by Pedro
10:51 queued 06:31
created

Peer::parseRelation()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace Classes\AdapterMakerFile\ZendFrameworkOne;
4
use Classes\AdapterMakerFile\AbstractAdapter;
5
6
/**
7
 * @author Pedro Alarcao <[email protected]>
8
 * @link   https://github.com/pedro151/orm-generator
9
 */
10
class Peer extends AbstractAdapter
11
{
12
    /**
13
     * @var void
14
     */
15
    public    $pastName      = 'Peer';
16
    protected $fileTpl       = "peer.php";
17
    protected $fileFixedData = array (
18
        'exception' => array (
19
            'tpl'  => "model_exception.php" ,
20
            'name' => "Exception"
21
        )
22
    );
23
24
    public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable )
25
    {
26
       return array();
27
    }
28
}
29