Code Duplication    Length = 4-4 lines in 2 locations

tests/verify_compat.php 2 locations

@@ 86-89 (lines=4) @@
83
                $tests['curl']['status'] = 1;
84
                $tests['curl']['description'] .= ".\nPlease note that the current cURL install does not support keep-alives";
85
            }
86
            if (!((is_string($info) && strpos($info, 'zlib') !== null) || isset($info['libz_version']))) {
87
                $tests['curl']['status'] = 1;
88
                $tests['curl']['description'] .= ".\nPlease note that the current cURL install does not support compressed messages";
89
            }
90
            if (!((is_string($info) && strpos($info, 'OpenSSL') !== null) || isset($info['ssl_version']))) {
91
                $tests['curl']['status'] = 1;
92
                $tests['curl']['description'] .= ".\nPlease note that the current cURL install does not support HTTPS connections";
@@ 90-93 (lines=4) @@
87
                $tests['curl']['status'] = 1;
88
                $tests['curl']['description'] .= ".\nPlease note that the current cURL install does not support compressed messages";
89
            }
90
            if (!((is_string($info) && strpos($info, 'OpenSSL') !== null) || isset($info['ssl_version']))) {
91
                $tests['curl']['status'] = 1;
92
                $tests['curl']['description'] .= ".\nPlease note that the current cURL install does not support HTTPS connections";
93
            }
94
        }
95
    }
96