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

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