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.

CircularReference1   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 19
c 0
b 0
f 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setReference2() 0 4 1
A getReference2() 0 4 1
1
<?php
2
3
namespace Hateoas\Tests\Fixtures;
4
5
use Hateoas\Configuration\Annotation as Hateoas;
6
use JMS\Serializer\Annotation as Serializer;
7
8
/**
9
 * @Serializer\ExclusionPolicy("all")
10
 *
11
 * @Hateoas\Relation("reference2", embedded="expr(object.getReference2())")
12
 */
13
class CircularReference1
14
{
15
    /**
16
     * @Serializer\Expose
17
     */
18
    private $name = 'reference1';
0 ignored issues
show
Unused Code introduced by
The property $name is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
19
20
    private $reference2;
21
22
    public function setReference2($reference2)
23
    {
24
        $this->reference2 = $reference2;
25
    }
26
27
    public function getReference2()
28
    {
29
        return $this->reference2;
30
    }
31
}
32