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 3 locations

src/JCFirebase.php 3 locations

@@ 155-161 (lines=7) @@
152
     *
153
     * @return JCResponseInterface
154
     */
155
    public function put($path = '', $options = array())
156
    {
157
        return $this->client->put($this->getPathURI($path),
158
            $this->addDataToRequest($options, true),
159
            $this->requestHeader
160
        );
161
    }
162
163
    /**
164
     * @param string $path
@@ 169-176 (lines=8) @@
166
     *
167
     * @return JCResponseInterface
168
     */
169
    public function post($path = '', $options = array())
170
    {
171
        return $this->client->post(
172
            $this->getPathURI($path),
173
            $this->addDataToRequest($options, true),
174
            $this->requestHeader
175
        );
176
    }
177
178
    /**
179
     * @param string $path
@@ 184-191 (lines=8) @@
181
     *
182
     * @return JCResponseInterface
183
     */
184
    public function patch($path = '', $options = array())
185
    {
186
        return $this->client->patch(
187
            $this->getPathURI($path),
188
            $this->addDataToRequest($options, true),
189
            $this->requestHeader
190
        );
191
    }
192
193
    /**
194
     * @param string $path