diff --git a/src/HttpGetRequest.php b/src/HttpGetRequest.php index 67e34e0..8834259 100644 --- a/src/HttpGetRequest.php +++ b/src/HttpGetRequest.php @@ -197,7 +197,7 @@ public function nssCiphers() $ver = curl_version(); if (preg_match('/^NSS.*Basic ECC$/', $ver['ssl_version'])) { $ciphers = array(); - foreach (new \SplFileObject(__DIR__ . '/../../res/nss_ciphers.txt') as $line) { + foreach (new \SplFileObject(__DIR__ . '/../res/nss_ciphers.txt') as $line) { $line = trim($line); if ($line) { $ciphers[] = $line;