Passed
Push — master ( b4ac3b...3cca7b )
by Tarmo
02:47
created
src/Rest/Describer/Security.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public function process(Operation $operation, RouteModel $routeModel): void
48 48
     {
49
-        $filter = function ($annotation): bool {
49
+        $filter = function($annotation): bool {
50 50
             return $annotation instanceof SecurityAnnotation;
51 51
         };
52 52
 
Please login to merge, or discard this patch.
src/Rest/Describer/Tags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             'tags' => [],
33 33
         ];
34 34
 
35
-        $filter = function ($annotation): bool {
35
+        $filter = function($annotation): bool {
36 36
             return $annotation instanceof SWG\Tag;
37 37
         };
38 38
 
Please login to merge, or discard this patch.
src/Rest/RequestHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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.
config/packages/dev/monolog.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
 use EasyCorp\EasyLog\EasyLogHandler;
5 5
 use Symfony\Component\Config\Resource\ClassExistenceResource;
Please login to merge, or discard this patch.
config/packages/prod/monolog.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
 use EasyCorp\EasyLog\EasyLogHandler;
5 5
 use Symfony\Component\Config\Resource\ClassExistenceResource;
Please login to merge, or discard this patch.