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

@@ 190-195 (lines=6) @@
187
            }
188
189
            // Is ZLib available?
190
            if (!extension_loaded('zlib')) {
191
                $errors[] = array(
192
                    'msg' => __('ZLib extension not present'),
193
                    'details' => __('Symphony uses the ZLib compression library for log rotation.')
194
                );
195
            }
196
197
            // Is libxml available?
198
            if (!extension_loaded('xml') && !extension_loaded('libxml')) {
@@ 198-203 (lines=6) @@
195
            }
196
197
            // Is libxml available?
198
            if (!extension_loaded('xml') && !extension_loaded('libxml')) {
199
                $errors[] = array(
200
                    'msg' => __('XML extension not present'),
201
                    'details'  => __('Symphony needs the XML extension to pass data to the site frontend.')
202
                );
203
            }
204
205
            // Is libxslt available?
206
            if (!extension_loaded('xsl') && !extension_loaded('xslt') && !function_exists('domxml_xslt_stylesheet')) {