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

Tests/DependencyInjection/AbstractIvoryGoogleMapExtensionTest.php 6 locations

@@ 169-175 (lines=7) @@
166
        $this->assertTrue($this->container->get('ivory.google_map.helper.formatter')->isDebug());
167
    }
168
169
    public function testMapLanguage()
170
    {
171
        $this->loadConfiguration($this->container, 'language');
172
        $this->container->compile();
173
174
        $this->assertSame('fr', $this->container->get('ivory.google_map.helper.renderer.loader')->getLanguage());
175
    }
176
177
    public function testMapApiKey()
178
    {
@@ 177-183 (lines=7) @@
174
        $this->assertSame('fr', $this->container->get('ivory.google_map.helper.renderer.loader')->getLanguage());
175
    }
176
177
    public function testMapApiKey()
178
    {
179
        $this->loadConfiguration($this->container, 'api_key');
180
        $this->container->compile();
181
182
        $this->assertSame('key', $this->container->get('ivory.google_map.helper.renderer.loader')->getKey());
183
    }
184
185
    public function testDirection()
186
    {
@@ 216-222 (lines=7) @@
213
        $this->assertSame(Direction::FORMAT_XML, $this->container->get('ivory.google_map.direction')->getFormat());
214
    }
215
216
    public function testDirectionApiKey()
217
    {
218
        $this->loadConfiguration($this->container, 'direction_api_key');
219
        $this->container->compile();
220
221
        $this->assertSame('key', $this->container->get('ivory.google_map.direction')->getKey());
222
    }
223
224
    public function testDirectionBusinessAccount()
225
    {
@@ 302-308 (lines=7) @@
299
        );
300
    }
301
302
    public function testDistanceMatrixApiKey()
303
    {
304
        $this->loadConfiguration($this->container, 'distance_matrix_api_key');
305
        $this->container->compile();
306
307
        $this->assertSame('key', $this->container->get('ivory.google_map.distance_matrix')->getKey());
308
    }
309
310
    public function testDistanceMatrixBusinessAccount()
311
    {
@@ 385-391 (lines=7) @@
382
        $this->assertSame(Elevation::FORMAT_XML, $this->container->get('ivory.google_map.elevation')->getFormat());
383
    }
384
385
    public function testElevationApiKey()
386
    {
387
        $this->loadConfiguration($this->container, 'elevation_api_key');
388
        $this->container->compile();
389
390
        $this->assertSame('key', $this->container->get('ivory.google_map.elevation')->getKey());
391
    }
392
393
    public function testElevationBusinessAccount()
394
    {
@@ 471-477 (lines=7) @@
468
        );
469
    }
470
471
    public function testGeocoderApiKey()
472
    {
473
        $this->loadConfiguration($this->container, 'geocoder_api_key');
474
        $this->container->compile();
475
476
        $this->assertSame('key', $this->container->get('ivory.google_map.geocoder')->getKey());
477
    }
478
479
    public function testGeocoderBusinessAccount()
480
    {