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

install/lib/class.installer.php 2 locations

@@ 207-212 (lines=6) @@
204
            }
205
206
            // Is ZLib available?
207
            if (!extension_loaded('zlib')) {
208
                $errors[] = array(
209
                    'msg' => __('ZLib extension not present'),
210
                    'details' => __('Symphony uses the ZLib compression library for log rotation.')
211
                );
212
            }
213
214
            // Is libxml available?
215
            if (!extension_loaded('xml') && !extension_loaded('libxml')) {
@@ 215-220 (lines=6) @@
212
            }
213
214
            // Is libxml available?
215
            if (!extension_loaded('xml') && !extension_loaded('libxml')) {
216
                $errors[] = array(
217
                    'msg' => __('XML extension not present'),
218
                    'details' => __('Symphony needs the XML extension to pass data to the site frontend.')
219
                );
220
            }
221
222
            // Is libxslt available?
223
            if (!extension_loaded('xsl') && !extension_loaded('xslt') && !function_exists('domxml_xslt_stylesheet')) {