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

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