Completed
Push — master ( 3454e8...729f51 )
by Derek
02:20
created
src/Anshar/Http/UriParts/AbstractUriPart.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -153,11 +153,11 @@
 block discarded – undo
153 153
 
154 154
         $this->part_pattern = preg_quote($valid_character_string, "/");
155 155
 
156
-        static::$valid_pattern = '/^$|' .     //allows part to be empty
157
-            '^([\w' .                       //start decoded group
158
-            $this->part_pattern .
159
-            ']|' .                          //predefined patterns or percent-encoding
160
-            $this->pct_encoded_pattern .
156
+        static::$valid_pattern = '/^$|'.//allows part to be empty
157
+            '^([\w'.//start decoded group
158
+            $this->part_pattern.
159
+            ']|'.//predefined patterns or percent-encoding
160
+            $this->pct_encoded_pattern.
161 161
             ')*$/';
162 162
     }
163 163
 
Please login to merge, or discard this patch.