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

Tests/DependencyInjection/ConfigurationTest.php 2 locations

@@ 127-140 (lines=14) @@
124
        $config = $processor->processConfiguration(new Configuration(true), []);
125
126
        $this->assertArrayHasKey('default_context', $config);
127
        foreach (['serialization', 'deserialization'] as $item) {
128
            $this->assertArrayHasKey($item, $config['default_context']);
129
130
            $defaultContext = $config['default_context'][$item];
131
132
            $this->assertTrue(is_array($defaultContext['attributes']));
133
            $this->assertEmpty($defaultContext['attributes']);
134
135
            $this->assertTrue(is_array($defaultContext['groups']));
136
            $this->assertEmpty($defaultContext['groups']);
137
138
            $this->assertArrayNotHasKey('version', $defaultContext);
139
            $this->assertArrayNotHasKey('serialize_null', $defaultContext);
140
        }
141
    }
142
143
    public function testContextValues()
@@ 242-255 (lines=14) @@
239
        ]);
240
241
        $this->assertArrayHasKey('default_context', $config);
242
        foreach (['serialization', 'deserialization'] as $configKey) {
243
            $this->assertArrayHasKey($configKey, $config['default_context']);
244
245
            $defaultContext = $config['default_context'][$configKey];
246
247
            $this->assertTrue(is_array($defaultContext['attributes']));
248
            $this->assertEmpty($defaultContext['attributes']);
249
250
            $this->assertTrue(is_array($defaultContext['groups']));
251
            $this->assertEmpty($defaultContext['groups']);
252
253
            $this->assertArrayNotHasKey('version', $defaultContext);
254
            $this->assertArrayNotHasKey('serialize_null', $defaultContext);
255
        }
256
    }
257
258
    public function testDefaultDateFormat()