Completed
Pull Request — master (#120)
by
unknown
17:50 queued 07:46
created
src/Test/ApiTestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
             $this->assertSame(
165 165
                 JSON_ERROR_NONE,
166 166
                 json_last_error(),
167
-                "Not valid JSON: " . json_last_error_msg() . "(" . var_export($content, true) . ")"
167
+                "Not valid JSON: ".json_last_error_msg()."(".var_export($content, true).")"
168 168
             );
169 169
         }
170 170
 
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     {
200 200
         $uri = $path;
201 201
         if (count($params)) {
202
-            $uri = $path . '?' . http_build_query($params);
202
+            $uri = $path.'?'.http_build_query($params);
203 203
         }
204 204
 
205 205
         return $uri;
Please login to merge, or discard this patch.
tests/functional/TestCacheSmashingPHPUnitListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
             return;
76 76
         }
77 77
 
78
-        $dir = __DIR__ . '/var';
78
+        $dir = __DIR__.'/var';
79 79
 
80 80
         if (!is_dir($dir)) {
81 81
             return;
Please login to merge, or discard this patch.