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/Container/Container.php 2 locations

@@ 83-90 (lines=8) @@
80
        return isset($this->dicValues[$key]);
81
    }
82
83
    public function hasInstance(string $key): bool
84
    {
85
        if (isset($this->aliases[$key])) {
86
            $key = $this->aliases[$key];
87
        }
88
89
        return isset($this->dicObjects[$key]);
90
    }
91
92
    /**
93
     * @inheritdoc
@@ 163-170 (lines=8) @@
160
     *
161
     * @param string $key
162
     */
163
    public function destroyInstance(string $key): void
164
    {
165
        if (isset($this->aliases[$key])) {
166
            $key = $this->aliases[$key];
167
        }
168
169
        unset($this->dicObjects[$key]);
170
    }
171
172
    public function destroyAllInstances(): void
173
    {