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 ( 660260...e1c224 )
by Pedro
03:36
created

Model   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

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