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

src/Helper/Collector/Place/Base/AutocompleteCoordinateCollector.php 1 location

@@ 60-68 (lines=9) @@
57
     */
58
    public function collect(Autocomplete $autocomplete, array $coordinates = [])
59
    {
60
        foreach ($this->boundCollector->collect($autocomplete) as $bound) {
61
            if ($bound->hasSouthWest()) {
62
                $coordinates = $this->collectValue($bound->getSouthWest(), $coordinates);
63
            }
64
65
            if ($bound->hasNorthEast()) {
66
                $coordinates = $this->collectValue($bound->getNorthEast(), $coordinates);
67
            }
68
        }
69
70
        return $coordinates;
71
    }

src/Helper/Collector/Base/CoordinateCollector.php 1 location

@@ 215-220 (lines=6) @@
212
            $coordinates = $this->collectValue($map->getCenter(), $coordinates);
213
        }
214
215
        foreach ($this->boundCollector->collect($map) as $bound) {
216
            if ($bound->hasCoordinates()) {
217
                $coordinates = $this->collectValue($bound->getSouthWest(), $coordinates);
218
                $coordinates = $this->collectValue($bound->getNorthEast(), $coordinates);
219
            }
220
        }
221
222
        foreach ($this->circleCollector->collect($map) as $circle) {
223
            $coordinates = $this->collectValue($circle->getCenter(), $coordinates);