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 ( b5916d...553620 )
by Pedro
05:58 queued 02:43
created

Peer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A parseRelation() 0 4 1
1
<?php
2
3
namespace Classes\AdapterMakerFile\Phalcon;
4
5
use Classes\AdapterMakerFile\AbstractAdapter;
6
7
/**
8
 * @author Pedro Alarcao <[email protected]>
9
 * @link   https://github.com/pedro151/orm-generator
10
 */
11
class Peer extends AbstractAdapter
12
{
13
    /**
14
     * @var void
15
     */
16
    public    $pastName      = 'Peer';
17
    protected $parentClass   = "AbstractPeer";
18
    protected $parentFileTpl = "peer_abstract.php";
19
    protected $fileTpl       = "peer.php";
20
21
    public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable )
22
    {
23
        return array ();
24
    }
25
}
26