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

src/Component/PharUpdate/Update.php 2 locations

@@ 137-141 (lines=5) @@
134
    public function deleteFile()
135
    {
136
        if ($this->file) {
137
            if (file_exists($this->file)) {
138
                if (false === @unlink($this->file)) {
139
                    throw FileException::lastError();
140
                }
141
            }
142
143
            if (file_exists($this->file . '.pubkey')) {
144
                if (false === @unlink($this->file . '.pubkey')) {
@@ 143-147 (lines=5) @@
140
                }
141
            }
142
143
            if (file_exists($this->file . '.pubkey')) {
144
                if (false === @unlink($this->file . '.pubkey')) {
145
                    throw FileException::lastError();
146
                }
147
            }
148
149
            $dir = dirname($this->file);
150