|
@@ -1,6 +1,6 @@ discard block |
|
|
block discarded – undo |
|
1
|
1
|
<?php |
|
2
|
2
|
|
|
3
|
|
-declare(strict_types=1); |
|
|
3
|
+declare(strict_types = 1); |
|
4
|
4
|
|
|
5
|
5
|
namespace Spiechu\SymfonyCommonsBundle\Service; |
|
6
|
6
|
|
|
@@ -152,7 +152,7 @@ discard block |
|
|
block discarded – undo |
|
152
|
152
|
*/ |
|
153
|
153
|
public function getKnownRouteResponseSchemaNumber(): int |
|
154
|
154
|
{ |
|
155
|
|
- return array_reduce($this->getKnownRouteResponseSchemas(), function (int $counter, array $formatSchemas) { |
|
|
155
|
+ return array_reduce($this->getKnownRouteResponseSchemas(), function(int $counter, array $formatSchemas) { |
|
156
|
156
|
return $counter + \count($formatSchemas); |
|
157
|
157
|
}, 0); |
|
158
|
158
|
} |
Please login to merge, or discard this patch.