Completed
Push — master ( 6d4ac6...c5a503 )
by Derek
02:07
created
src/Anshar/Http/UriParts/Query.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $uri_query = $this->data;
83 83
 
84 84
         if (!empty($uri_query)) {
85
-            $uri_query = "?" . $uri_query;
85
+            $uri_query = "?".$uri_query;
86 86
         }
87 87
 
88 88
         return $uri_query;
@@ -94,12 +94,12 @@  discard block
 block discarded – undo
94 94
      */
95 95
     protected function compileValidPattern()
96 96
     {
97
-        self::$valid_pattern = '/^([\/\?' .
98
-            $this->unreserved_pattern .
99
-            $this->sub_delims_pattern .
100
-            $this->pchar_pattern .
101
-            ']|' .
102
-            $this->pct_encoded_pattern .
97
+        self::$valid_pattern = '/^([\/\?'.
98
+            $this->unreserved_pattern.
99
+            $this->sub_delims_pattern.
100
+            $this->pchar_pattern.
101
+            ']|'.
102
+            $this->pct_encoded_pattern.
103 103
             ')*$/';
104 104
     }
105 105
 }
Please login to merge, or discard this patch.