Passed
Push — main ( b92cd4...d72029 )
by Thomas
03:18
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/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
@@ -129,13 +129,13 @@  discard block
 block discarded – undo
129 129
         $reflector = new ReflectionFunction($this->closure);
130 130
 
131 131
         if (!isset($this->attributes)) {
132
-            $this->attributes = array_map(function ($attribute) {
132
+            $this->attributes = array_map(function($attribute) {
133 133
                 return $attribute->newInstance();
134 134
             }, $reflector->getAttributes());
135 135
         }
136 136
 
137 137
         if ($filter) {
138
-            return array_filter($this->attributes, function ($attribute) use ($filter) {
138
+            return array_filter($this->attributes, function($attribute) use ($filter) {
139 139
                 return $attribute instanceof $filter;
140 140
             });
141 141
         }
@@ -200,11 +200,9 @@  discard block
 block discarded – undo
200 200
             try {
201 201
                 $args[$name] = match ((string)$param->getType()) {
202 202
                     'int' => is_numeric($this->routeArgs[$name]) ?
203
-                        (int)$this->routeArgs[$name] :
204
-                        throw new RuntimeException($errMsg . "Cannot cast '{$name}' to int"),
203
+                        (int)$this->routeArgs[$name] : throw new RuntimeException($errMsg . "Cannot cast '{$name}' to int"),
205 204
                     'float' => is_numeric($this->routeArgs[$name]) ?
206
-                        (float)$this->routeArgs[$name] :
207
-                        throw new RuntimeException($errMsg . "Cannot cast '{$name}' to float"),
205
+                        (float)$this->routeArgs[$name] : throw new RuntimeException($errMsg . "Cannot cast '{$name}' to float"),
208 206
                     'string' => $this->routeArgs[$name],
209 207
                     default => $this->registry->resolveParam($param),
210 208
                 };
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
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
         $registry->add(ResponseFactoryInterface::class, \Nyholm\Psr7\Factory\Psr17Factory::class);
154 154
         $registry->add(StreamFactoryInterface::class, \Nyholm\Psr7\Factory\Psr17Factory::class);
155 155
         $registry->add(ResponseFactory::class, new ResponseFactory($this->registry));
156
-        $registry->add(ServerRequestInterface::class, function (): ServerRequestInterface {
156
+        $registry->add(ServerRequestInterface::class, function(): ServerRequestInterface {
157 157
             try {
158 158
                 $psr17Factory = new \Nyholm\Psr7\Factory\Psr17Factory();
159 159
                 $creator = new \Nyholm\Psr7Server\ServerRequestCreator(
Please login to merge, or discard this patch.
src/Registry.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@  discard block
 block discarded – undo
72 72
         }
73 73
 
74 74
         $message = empty($this->tag) ?
75
-            'Unresolvable id: ' . $id :
76
-            'Unresolvable tagged id: ' . $this->tag . '::' . $id;
75
+            'Unresolvable id: ' . $id : 'Unresolvable tagged id: ' . $this->tag . '::' . $id;
77 76
 
78 77
         throw new NotFoundException($message);
79 78
     }
@@ -140,8 +139,7 @@  discard block
 block discarded – undo
140 139
         // If $paramName is emtpy an existing unbound entry should
141 140
         // be found on first try.
142 141
         return isset($this->entries[$id . $paramName]) ?
143
-            $this->resolveEntry($this->entries[$id . $paramName]) :
144
-            $this->get($id);
142
+            $this->resolveEntry($this->entries[$id . $paramName]) : $this->get($id);
145 143
     }
146 144
 
147 145
     public function resolveParam(ReflectionParameter $param): mixed
Please login to merge, or discard this patch.