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

src/Compute/v2/Models/Image.php 1 location

@@ 138-145 (lines=8) @@
135
     *
136
     * @param string $key {@see \OpenStack\Compute\v2\Api::deleteImageMetadataKey}
137
     */
138
    public function deleteMetadataItem(string $key)
139
    {
140
        if (isset($this->metadata[$key])) {
141
            unset($this->metadata[$key]);
142
        }
143
144
        $this->execute($this->api->deleteImageMetadataKey(), ['id' => $this->id, 'key' => $key]);
145
    }
146
147
    public function parseMetadata(ResponseInterface $response): array
148
    {

src/Compute/v2/Models/Server.php 1 location

@@ 571-578 (lines=8) @@
568
     *
569
     * @param string $key {@see \OpenStack\Compute\v2\Api::deleteServerMetadataKey}
570
     */
571
    public function deleteMetadataItem(string $key)
572
    {
573
        if (isset($this->metadata[$key])) {
574
            unset($this->metadata[$key]);
575
        }
576
577
        $this->execute($this->api->deleteServerMetadataKey(), ['id' => $this->id, 'key' => $key]);
578
    }
579
580
581
    /**