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 ( 835d6a...f13adc )
by William
02:52
created

Hateoas/Tests/Fixtures/CircularReference2.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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("reference1", embedded="expr(object.getReference1())")
12
 */
13
class CircularReference2
14
{
15
    /**
16
     * @Serializer\Expose
17
     */
18
    private $name = 'reference2';
0 ignored issues
show
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 $reference1;
21
22
    public function setReference1($reference1)
23
    {
24
        $this->reference1 = $reference1;
25
    }
26
27
    public function getReference1()
28
    {
29
        return $this->reference1;
30
    }
31
}
32