Failed Conditions
Pull Request — master (#1)
by
unknown
01:58
created
tests/Filter/StringsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 
169 169
             public function __construct()
170 170
             {
171
-                $this->data = [1,2,3,4,5];
171
+                $this->data = [1, 2, 3, 4, 5];
172 172
             }
173 173
 
174 174
             public function __toString()
Please login to merge, or discard this patch.
src/Filter/Strings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     {
64 64
         if (empty($delimiter)) {
65 65
             throw new \InvalidArgumentException(
66
-                "Delimiter '" . var_export($delimiter, true) . "' is not a non-empty string"
66
+                "Delimiter '".var_export($delimiter, true)."' is not a non-empty string"
67 67
             );
68 68
         }
69 69
 
Please login to merge, or discard this patch.