Completed
Push — master ( 6dec95...e32915 )
by Joao
03:32
created
src/Dataset/FixedTextFileDataset.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
         if (!preg_match("~^https?://~", $source)) {
39 39
             if (!file_exists($this->source)) {
40
-                throw new NotFoundException("The specified file " . $this->source . " does not exists");
40
+                throw new NotFoundException("The specified file ".$this->source." does not exists");
41 41
             }
42 42
 
43 43
             $this->sourceType = "FILE";
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
             throw new DatasetException("TextFileDataset Socket error: $errstr ($errno)");
80 80
         }
81 81
 
82
-        $out = "GET " . $urlParts[4] . " HTTP/1.1\r\n";
83
-        $out .= "Host: " . $urlParts[2] . "\r\n";
82
+        $out = "GET ".$urlParts[4]." HTTP/1.1\r\n";
83
+        $out .= "Host: ".$urlParts[2]."\r\n";
84 84
         $out .= "Connection: Close\r\n\r\n";
85 85
 
86 86
         try {
Please login to merge, or discard this patch.