Passed
Push — master ( a717b5...dd05c8 )
by Florian
03:07 queued 01:19
created
src/UrlChecker/DefaultUrlChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     protected function getUrlFromRequest(UriInterface $uri): string
62 62
     {
63 63
         if ($this->checkFullUrl) {
64
-            return (string)$uri;
64
+            return (string) $uri;
65 65
         }
66 66
 
67 67
         return $uri->getPath();
Please login to merge, or discard this patch.
src/UrlChecker/RegexUrlChecker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     {
50 50
         $requestUrl = $this->getUrlFromRequest($request->getUri());
51 51
 
52
-        return (bool)preg_match($regex, $requestUrl);
52
+        return (bool) preg_match($regex, $requestUrl);
53 53
     }
54 54
 
55 55
     /**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     protected function getUrlFromRequest(UriInterface $uri): string
62 62
     {
63 63
         if ($this->checkFullUrl) {
64
-            return (string)$uri;
64
+            return (string) $uri;
65 65
         }
66 66
 
67 67
         return $uri->getPath();
Please login to merge, or discard this patch.
src/Identifier/Ldap/ExtensionAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
     protected function setErrorHandler()
170 170
     {
171 171
         set_error_handler(
172
-            function ($errorNumber, $errorText) {
172
+            function($errorNumber, $errorText) {
173 173
                  throw new ErrorException($errorText);
174 174
             },
175 175
             E_ALL
Please login to merge, or discard this patch.
tests/TestCase/Identifier/Resolver/CallbackResolverTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function testFindDefault(): void
32 32
     {
33
-        $function = function ($data) {
33
+        $function = function($data) {
34 34
             if (isset($data['username']) && $data['username'] === 'mariano') {
35 35
                 return new ArrayObject([
36 36
                     'id' => 1,
Please login to merge, or discard this patch.
tests/TestCase/Middleware/AuthenticationMiddlewareTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             ->method('getAuthenticationService')
74 74
             ->willReturn($service);
75 75
 
76
-        $requestHandler =  $this
76
+        $requestHandler = $this
77 77
             ->getMockBuilder(RequestHandlerInterface::class)
78 78
             ->getMock();
79 79
 
Please login to merge, or discard this patch.