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 = 9-9 lines in 2 locations

lib/UCD/Unicode/Character/Properties/Enumeration.php 1 location

@@ 54-62 (lines=9) @@
51
     * @param mixed $other
52
     * @return bool
53
     */
54
    public function equals($other)
55
    {
56
        if ($this === $other) {
57
            return true;
58
        }
59
60
        return $other instanceof static
61
            && $other->value === $this->value;
62
    }
63
64
    /**
65
     * @param string $value

lib/UCD/Unicode/Codepoint.php 1 location

@@ 165-173 (lines=9) @@
162
     * @param mixed $other
163
     * @return bool
164
     */
165
    public function equals($other)
166
    {
167
        if ($this === $other) {
168
            return true;
169
        }
170
171
        return $other instanceof self
172
            && $this->value === $other->value;
173
    }
174
175
    /**
176
     * @return string