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

DependencyInjection/JMSSerializerExtension.php 2 locations

@@ 182-184 (lines=3) @@
179
                continue;
180
            }
181
182
            if (isset($config['default_context'][$configKey]['version'])) {
183
                $contextFactory->addMethodCall('setVersion', [$config['default_context'][$configKey]['version']]);
184
            }
185
            if (isset($config['default_context'][$configKey]['serialize_null'])) {
186
                $contextFactory->addMethodCall('setSerializeNulls', [$config['default_context'][$configKey]['serialize_null']]);
187
            }
@@ 185-187 (lines=3) @@
182
            if (isset($config['default_context'][$configKey]['version'])) {
183
                $contextFactory->addMethodCall('setVersion', [$config['default_context'][$configKey]['version']]);
184
            }
185
            if (isset($config['default_context'][$configKey]['serialize_null'])) {
186
                $contextFactory->addMethodCall('setSerializeNulls', [$config['default_context'][$configKey]['serialize_null']]);
187
            }
188
            if (!empty($config['default_context'][$configKey]['attributes'])) {
189
                $contextFactory->addMethodCall('setAttributes', [$config['default_context'][$configKey]['attributes']]);
190
            }