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

@@ 220-228 (lines=9) @@
217
     * @param mixed $other
218
     * @return bool
219
     */
220
    public function equals($other)
221
    {
222
        if ($this === $other) {
223
            return true;
224
        }
225
226
        return $other instanceof self
227
            && $this->value === $other->value;
228
    }
229
230
    /**
231
     * @return string