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

src/Server/Environment.php 2 locations

@@ 132-138 (lines=7) @@
129
     * @param string $name
130
     * @return mixed
131
     */
132
    public static function getDefault($name)
133
    {
134
        if (null === self::$defaults) {
135
            self::$defaults = new DotArray();
136
        }
137
        return self::$defaults[$name];
138
    }
139
140
    /**
141
     * @param string $name
@@ 144-150 (lines=7) @@
141
     * @param string $name
142
     * @param mixed $value
143
     */
144
    public static function setDefault($name, $value)
145
    {
146
        if (null === self::$defaults) {
147
            self::$defaults = new DotArray();
148
        }
149
        self::$defaults[$name] = $value;
150
    }
151
152
    /**
153
     * Parse env values.