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

@@ 155-157 (lines=3) @@
152
                continue;
153
            }
154
155
            if (isset($config['default_context'][$configKey]['version'])) {
156
                $contextFactory->addMethodCall('setVersion', [$config['default_context'][$configKey]['version']]);
157
            }
158
            if (isset($config['default_context'][$configKey]['serialize_null'])) {
159
                $contextFactory->addMethodCall('setSerializeNulls', [$config['default_context'][$configKey]['serialize_null']]);
160
            }
@@ 158-160 (lines=3) @@
155
            if (isset($config['default_context'][$configKey]['version'])) {
156
                $contextFactory->addMethodCall('setVersion', [$config['default_context'][$configKey]['version']]);
157
            }
158
            if (isset($config['default_context'][$configKey]['serialize_null'])) {
159
                $contextFactory->addMethodCall('setSerializeNulls', [$config['default_context'][$configKey]['serialize_null']]);
160
            }
161
            if (!empty($config['default_context'][$configKey]['attributes'])) {
162
                $contextFactory->addMethodCall('setAttributes', [$config['default_context'][$configKey]['attributes']]);
163
            }