Passed
Push — main ( ee0fb9...269aa4 )
by Thomas
02:42
created
src/Dispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         if ($handler instanceof MiddlewareInterface) {
45 45
             return $handler(
46 46
                 $request,
47
-                function (
47
+                function(
48 48
                     Request $req
49 49
                 ) use ($queue): Response {
50 50
                     return $this->handle(
Please login to merge, or discard this patch.
src/App.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
         $registry->addAnyway(ResponseFactoryInterface::class, \Nyholm\Psr7\Factory\Psr17Factory::class);
121 121
         $registry->addAnyway(StreamFactoryInterface::class, \Nyholm\Psr7\Factory\Psr17Factory::class);
122 122
         $registry->addAnyway(ResponseFactory::class, new ResponseFactory($this->registry));
123
-        $registry->addAnyway(ServerRequestInterface::class, function (): ServerRequestInterface {
123
+        $registry->addAnyway(ServerRequestInterface::class, function(): ServerRequestInterface {
124 124
             try {
125 125
                 $psr17Factory = new \Nyholm\Psr7\Factory\Psr17Factory();
126 126
                 $creator = new \Nyholm\Psr7Server\ServerRequestCreator(
Please login to merge, or discard this patch.
src/Registry.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -180,8 +180,7 @@
 block discarded – undo
180 180
         // If $paramName is emtpy an existing unbound entry should
181 181
         // be found on first try.
182 182
         return isset($this->entries[$id . $paramName]) ?
183
-            $this->resolveEntry($this->entries[$id . $paramName]) :
184
-            $this->get($id);
183
+            $this->resolveEntry($this->entries[$id . $paramName]) : $this->get($id);
185 184
     }
186 185
 
187 186
     public function resolveParam(ReflectionParameter $param): mixed
Please login to merge, or discard this patch.
src/Json.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public static function encode(
12 12
         mixed $data,
13
-        int $flags = JSON_UNESCAPED_SLASHES | JSON_THROW_ON_ERROR
13
+        int $flags = JSON_UNESCAPED_SLASHES|JSON_THROW_ON_ERROR
14 14
     ): string {
15 15
         if ($data instanceof Traversable) {
16 16
             return json_encode(iterator_to_array($data), $flags);
Please login to merge, or discard this patch.
src/View.php 1 patch
Spacing   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
 
132 132
         /** @psalm-suppress RedundantPropertyInitializationCheck */
133 133
         if (!isset($this->attributes)) {
134
-            $this->attributes = array_map(function ($attribute) {
134
+            $this->attributes = array_map(function($attribute) {
135 135
                 return $attribute->newInstance();
136 136
             }, $reflector->getAttributes());
137 137
         }
138 138
 
139 139
         if ($filter) {
140
-            return array_filter($this->attributes, function ($attribute) use ($filter) {
140
+            return array_filter($this->attributes, function($attribute) use ($filter) {
141 141
                 return $attribute instanceof $filter;
142 142
             });
143 143
         }
@@ -202,11 +202,9 @@  discard block
 block discarded – undo
202 202
             try {
203 203
                 $args[$name] = match ((string)$param->getType()) {
204 204
                     'int' => is_numeric($this->routeArgs[$name]) ?
205
-                        (int)$this->routeArgs[$name] :
206
-                        throw new RuntimeException($errMsg . "Cannot cast '{$name}' to int"),
205
+                        (int)$this->routeArgs[$name] : throw new RuntimeException($errMsg . "Cannot cast '{$name}' to int"),
207 206
                     'float' => is_numeric($this->routeArgs[$name]) ?
208
-                        (float)$this->routeArgs[$name] :
209
-                        throw new RuntimeException($errMsg . "Cannot cast '{$name}' to float"),
207
+                        (float)$this->routeArgs[$name] : throw new RuntimeException($errMsg . "Cannot cast '{$name}' to float"),
210 208
                     'string' => $this->routeArgs[$name],
211 209
                     default => $this->registry->resolveParam($param),
212 210
                 };
Please login to merge, or discard this patch.