From 8d324a1524096f8f21847828067ac121316098bd Mon Sep 17 00:00:00 2001 From: Tigran Makaryan Date: Fri, 4 Aug 2017 12:32:33 +0400 Subject: [PATCH] Fixed cloudflare IP list fetch request. removed additional /, otherwise have double / and it generate an error. --- src/CloudFlare/IPs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CloudFlare/IPs.php b/src/CloudFlare/IPs.php index 9372aa0..a513e51 100644 --- a/src/CloudFlare/IPs.php +++ b/src/CloudFlare/IPs.php @@ -20,6 +20,6 @@ class IPs extends Api */ public function ips() { - return $this->get('/ips'); + return $this->get('ips'); } }