Passed
Push — master ( 98f551...c71a25 )
by Dāvis
05:24
created
Script/Utils/StreamResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         $chunked = $this->headers->has('Transfer-Encoding');
25 25
         $this->content->seek(0);
26 26
 
27
-        for (; ;) {
27
+        for (;;) {
28 28
             $chunk = $this->content->read($this->bufferSize);
29 29
 
30 30
             if ($chunked) {
Please login to merge, or discard this patch.
Openidconnect/Provider/BaseProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $params = $grant->prepareRequestParameters($params, $options);
23 23
         $request = $this->getAccessTokenRequest($params);
24 24
         $response = $this->getResponse($request);
25
-        if(!is_array($response)){
25
+        if (!is_array($response)) {
26 26
             throw new ErrorException('error_invalid_request');
27 27
         }
28 28
         $prepared = $this->prepareAccessTokenResponse($response);
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $params = $grant->prepareRequestParameters($params, $options);
23 23
         $request = $this->getAccessTokenRequest($params);
24 24
         $response = $this->getResponse($request);
25
-        if(!is_array($response)){
25
+        if(!is_array($response)) {
26 26
             throw new ErrorException('error_invalid_request');
27 27
         }
28 28
         $prepared = $this->prepareAccessTokenResponse($response);
Please login to merge, or discard this patch.
Captcha/Router/LocaleResolver.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     {
45 45
         $locale = $this->resolveLocale($this->request, $this->availableLocales);
46 46
 
47
-        if(\in_array($locale, $this->availableLocales, true)){
47
+        if (\in_array($locale, $this->availableLocales, true)) {
48 48
             return $locale;
49 49
         }
50 50
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     {
45 45
         $locale = $this->resolveLocale($this->request, $this->availableLocales);
46 46
 
47
-        if(\in_array($locale, $this->availableLocales, true)){
47
+        if(\in_array($locale, $this->availableLocales, true)) {
48 48
             return $locale;
49 49
         }
50 50
 
Please login to merge, or discard this patch.