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
Pull Request — master (#237)
by Adrien
02:42
created

Gh236Foo   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Hateoas\Tests\Fixtures;
4
5
use JMS\Serializer\Annotation as Serializer;
6
7
class Gh236Foo
8
{
9
    /**
10
     * @Serializer\Expose()
11
     * @Serializer\MaxDepth(1)
12
     */
13
    public $bar;
14
15
    public function __construct()
16
    {
17
        $this->bar = new Gh236Bar();
18
    }
19
}
20