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 3 locations

install/lib/Requirements.php 3 locations

@@ 32-37 (lines=6) @@
29
        }
30
31
        // Is PDO available?
32
        if (!extension_loaded('pdo')) {
33
            $errors[] = array(
34
                'msg' => __('PDO extension not present'),
35
                'details' => __('Symphony requires PHP to be configured with PDO to work.')
36
            );
37
        }
38
39
        // Is CURL available?
40
        if (!extension_loaded('curl')) {
@@ 40-45 (lines=6) @@
37
        }
38
39
        // Is CURL available?
40
        if (!extension_loaded('curl')) {
41
            $errors[] = array(
42
                'msg' => __('CURL extension not present'),
43
                'details' => __('Symphony requires PHP to be configured with CURL for HTTP communication.')
44
            );
45
        }
46
47
        // Is libxml available?
48
        if (!extension_loaded('xml') && !extension_loaded('libxml')) {
@@ 48-53 (lines=6) @@
45
        }
46
47
        // Is libxml available?
48
        if (!extension_loaded('xml') && !extension_loaded('libxml')) {
49
            $errors[] = array(
50
                'msg' => __('XML extension not present'),
51
                'details' => __('Symphony needs the XML extension to pass data to the site frontend.')
52
            );
53
        }
54
55
        // Is libxslt available?
56
        if (!extension_loaded('xsl') && !extension_loaded('xslt') && !function_exists('domxml_xslt_stylesheet')) {