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.

Code Duplication    Length = 7-8 lines in 2 locations

bundle/Value/ValueObject.php 2 locations

@@ 31-37 (lines=7) @@
28
     * @throws PropertyNotFoundException
29
     * @throws PropertyReadOnlyException
30
     */
31
    public function __set($property, $value)
32
    {
33
        if (property_exists($this, $property)) {
34
            throw new PropertyReadOnlyException($property, get_class($this));
35
        }
36
        throw new PropertyNotFoundException($property, get_class($this));
37
    }
38
39
    /**
40
     * Magic get
@@ 48-55 (lines=8) @@
45
     *
46
     * @throws PropertyNotFoundException
47
     */
48
    public function __get($property)
49
    {
50
        if (property_exists($this, $property)) {
51
            return $this->$property;
52
        }
53
54
        throw new PropertyNotFoundException($property, get_class($this));
55
    }
56
}
57