Passed
Branch master (b4ac3b)
by Tarmo
05:51
created
src/Utils/Tests/ContainerTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Utils/Tests/ContainerTestCase.php
5 5
  *
Please login to merge, or discard this patch.
src/Utils/LoginLoggerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Utils/LoginLoggerInterface.php
5 5
  *
Please login to merge, or discard this patch.
src/Utils/RequestLoggerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Utils/RequestLoggerInterface.php
5 5
  *
Please login to merge, or discard this patch.
src/Utils/RequestLogger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Utils/RequestLogger.php
5 5
  *
Please login to merge, or discard this patch.
src/Utils/LoginLogger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Utils/LoginLogger.php
5 5
  *
Please login to merge, or discard this patch.
src/Rest/ResponseHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Rest/ResponseHandler.php
5 5
  *
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         if ($populateAll && \count($populate) === 0) {
110 110
             $associations = $this->getResource()->getAssociations();
111 111
 
112
-            $iterator = function (string $assocName) use ($entityName): string {
112
+            $iterator = function(string $assocName) use ($entityName): string {
113 113
                 return $entityName . '.' . $assocName;
114 114
             };
115 115
 
Please login to merge, or discard this patch.
src/Rest/RestResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Rest/RestResource.php
5 5
  *
Please login to merge, or discard this patch.
src/Rest/ResponseHandlerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Rest/ResponseHandlerInterface.php
5 5
  *
Please login to merge, or discard this patch.
src/Rest/RequestHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * /src/Rest/RequestHandler.php
5 5
  *
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
          * @param   string          $value
96 96
          * @param   integer|string  $key
97 97
          */
98
-        $iterator = function (string &$value, $key) use (&$output) {
98
+        $iterator = function(string&$value, $key) use (&$output) {
99 99
             $order = 'ASC';
100 100
 
101 101
             if (\is_string($key)) {
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
                  *
208 208
                  * @param   string|array $terms
209 209
                  */
210
-                $iterator = function (&$terms) {
210
+                $iterator = function(&$terms) {
211 211
                     $terms = \array_unique(\array_values(\array_filter($terms)));
212 212
                 };
213 213
 
Please login to merge, or discard this patch.