From 035233e196936607baa0b82ed9fbefdf9d93e420 Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Wed, 4 Nov 2015 13:12:48 +0100 Subject: [PATCH] make the crawler case sensitive --- src/Url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Url.php b/src/Url.php index cbc0fae..f28d8e3 100644 --- a/src/Url.php +++ b/src/Url.php @@ -40,7 +40,7 @@ public function __construct($url) foreach (['scheme', 'host', 'path'] as $property) { if (isset($urlProperties[$property])) { - $this->$property = strtolower($urlProperties[$property]); + $this->$property = $urlProperties[$property]; } } }