Passed
Push — master ( c0b1f8...5dd969 )
by Florian
03:23 queued 10s
created
tests/TestCase/UrlChecker/RequestMockTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 
42 42
         $uri->expects($this->any())
43 43
             ->method('__toString')
44
-            ->willReturn('http://localhost' . $uriString);
44
+            ->willReturn('http://localhost'.$uriString);
45 45
 
46 46
         $request->expects($this->any())
47 47
             ->method('getUri')
Please login to merge, or discard this patch.
tests/TestCase/AuthenticationServiceTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
 
138 138
         $uri->expects($this->any())
139 139
             ->method('__toString')
140
-            ->willReturn('http://localhost' . $path);
140
+            ->willReturn('http://localhost'.$path);
141 141
 
142 142
         $request->expects($this->any())
143 143
             ->method('getUri')
Please login to merge, or discard this patch.