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

Sphpeme/Env/MathEnv.php 2 locations

@@ 61-69 (lines=9) @@
58
     * @return int|float
59
     * @throws \InvalidArgumentException
60
     */
61
    public function subtract(...$args)
62
    {
63
        array_reduce($args, [$this, 'enforcePredicate'], [$this, 'isNumber']);
64
65
        $arg = $args[0];
66
        $args = \array_slice($args, 1);
67
68
        return $arg - array_sum($args);
69
    }
70
71
    /**
72
     * Multiply the args
@@ 91-99 (lines=9) @@
88
     * @return int|float
89
     * @throws \InvalidArgumentException
90
     */
91
    public function divide(...$args)
92
    {
93
        array_reduce($args, [$this, 'enforcePredicate'], [$this, 'isNumber']);
94
95
        $arg = $args[0];
96
        $args = \array_slice($args, 1);
97
98
        return $arg / array_product($args);
99
    }
100
101
    /**
102
     * Returns true if $a is greater than $b, otherwise false