Passed
Push — master ( 7a551b...12b6d2 )
by Jakub
02:04
created
src/Req2CmdBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function getContainerExtension(): Extension
13 13
     {
14 14
         if ($this->extension === null) {
15
-            $this->extension = new Req2CmdExtension();
15
+            $this->extension=new Req2CmdExtension();
16 16
         }
17 17
 
18 18
         return $this->extension;
Please login to merge, or discard this patch.
src/EventListener/ExtractCommandFromRequestListener.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
 
11 11
 class ExtractCommandFromRequestListener
12 12
 {
13
-    public const API_RESPONDER_CONTROLLER = 'eps.req2cmd.action.api_responder';
14
-    public const CMD_CLASS_PARAM = '_command_class';
15
-    public const CMD_PARAM = '_command';
16
-    public const CMD_PROPS_PARAM = '_command_properties';
17
-    private const CONTROLLER_PARAM = '_controller';
13
+    public const API_RESPONDER_CONTROLLER='eps.req2cmd.action.api_responder';
14
+    public const CMD_CLASS_PARAM='_command_class';
15
+    public const CMD_PARAM='_command';
16
+    public const CMD_PROPS_PARAM='_command_properties';
17
+    private const CONTROLLER_PARAM='_controller';
18 18
 
19 19
     /**
20 20
      * @var CommandExtractorInterface
@@ -28,20 +28,20 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function __construct(CommandExtractorInterface $extractor, ParamCollectorInterface $paramCollector)
30 30
     {
31
-        $this->extractor = $extractor;
32
-        $this->paramCollector = $paramCollector;
31
+        $this->extractor=$extractor;
32
+        $this->paramCollector=$paramCollector;
33 33
     }
34 34
 
35 35
     public function onKernelRequest(GetResponseEvent $event): void
36 36
     {
37
-        $request = $event->getRequest();
38
-        $commandClass = $request->attributes->get(self::CMD_CLASS_PARAM);
37
+        $request=$event->getRequest();
38
+        $commandClass=$request->attributes->get(self::CMD_CLASS_PARAM);
39 39
         if ($commandClass === null) {
40 40
             return;
41 41
         }
42 42
 
43
-        $additionalParams = $this->extractAdditionalParams($request);
44
-        $command = $this->extractor->extractFromRequest($request, $commandClass, $additionalParams);
43
+        $additionalParams=$this->extractAdditionalParams($request);
44
+        $command=$this->extractor->extractFromRequest($request, $commandClass, $additionalParams);
45 45
 
46 46
         $request->attributes->set(self::CMD_PARAM, $command);
47 47
         $request->attributes->remove(self::CMD_CLASS_PARAM);
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
 
54 54
     private function extractAdditionalParams(Request $request): array
55 55
     {
56
-        $additionalParams = [];
56
+        $additionalParams=[];
57 57
         if ($request->attributes->has(self::CMD_PROPS_PARAM)) {
58
-            $additionalProps = $request->attributes->get(self::CMD_PROPS_PARAM);
59
-            $additionalParams = $this->paramCollector->collect($request, $additionalProps);
58
+            $additionalProps=$request->attributes->get(self::CMD_PROPS_PARAM);
59
+            $additionalParams=$this->paramCollector->collect($request, $additionalProps);
60 60
         }
61 61
 
62 62
         return $additionalParams;
Please login to merge, or discard this patch.
src/CommandExtractor/SerializerCommandExtractor.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
         DecoderInterface $decoder,
37 37
         DenormalizerInterface $denormalizer
38 38
     ) {
39
-        $this->serializer = $serializer;
40
-        $this->decoder = $decoder;
41
-        $this->denormalizer = $denormalizer;
39
+        $this->serializer=$serializer;
40
+        $this->decoder=$decoder;
41
+        $this->denormalizer=$denormalizer;
42 42
     }
43 43
 
44 44
     /**
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
      * @throws \LogicException
47 47
      * @throws \Symfony\Component\Serializer\Exception\UnexpectedValueException
48 48
      */
49
-    public function extractFromRequest(Request $request, string $commandClass, array $additionalProps = [])
49
+    public function extractFromRequest(Request $request, string $commandClass, array $additionalProps=[])
50 50
     {
51 51
         if (!empty($additionalProps)) {
52
-            $decodedContent = $this->decoder->decode($request->getContent(), $request->getRequestFormat());
53
-            $finalProps = array_merge($decodedContent, $additionalProps);
52
+            $decodedContent=$this->decoder->decode($request->getContent(), $request->getRequestFormat());
53
+            $finalProps=array_merge($decodedContent, $additionalProps);
54 54
             return $this->denormalizer->denormalize($finalProps, $commandClass, $request->getRequestFormat());
55 55
         }
56 56
 
Please login to merge, or discard this patch.
src/Exception/ParamMapperException.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,17 +7,17 @@
 block discarded – undo
7 7
 
8 8
 final class ParamMapperException extends LogicException implements Req2CmdExceptionInterface
9 9
 {
10
-    public static function noParamFound(string $paramName, \Throwable $previous = null): self
10
+    public static function noParamFound(string $paramName, \Throwable $previous=null): self
11 11
     {
12
-        $excCode = 101;
13
-        $message = sprintf('Parameter "%s" is required and it\'s missing in your request', $paramName);
12
+        $excCode=101;
13
+        $message=sprintf('Parameter "%s" is required and it\'s missing in your request', $paramName);
14 14
         return new self($message, $excCode, $previous);
15 15
     }
16 16
 
17
-    public static function paramEmpty(string $paramName, \Throwable $previous = null): self
17
+    public static function paramEmpty(string $paramName, \Throwable $previous=null): self
18 18
     {
19
-        $excCode = 102;
20
-        $message = sprintf('The value of the parameter "%s" cannot be empty', $paramName);
19
+        $excCode=102;
20
+        $message=sprintf('The value of the parameter "%s" cannot be empty', $paramName);
21 21
         return new self($message, $excCode, $previous);
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/Serializer/DeserializableCommandDenormalizer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,18 +11,18 @@
 block discarded – undo
11 11
     /**
12 12
      * {@inheritdoc}
13 13
      */
14
-    public function denormalize($data, $class, $format = null, array $context = [])
14
+    public function denormalize($data, $class, $format=null, array $context=[])
15 15
     {
16
-        return call_user_func($class . '::fromArray', $data);
16
+        return call_user_func($class.'::fromArray', $data);
17 17
     }
18 18
 
19 19
     /**
20 20
      * {@inheritdoc}
21 21
      * @throws \ReflectionException
22 22
      */
23
-    public function supportsDenormalization($data, $type, $format = null): bool
23
+    public function supportsDenormalization($data, $type, $format=null): bool
24 24
     {
25
-        $reflClass = new \ReflectionClass($type);
25
+        $reflClass=new \ReflectionClass($type);
26 26
         return $reflClass->implementsInterface(DeserializableCommandInterface::class);
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Params/ParamCollector/ParamCollector.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
     public function __construct(array $mappers)
17 17
     {
18
-        $this->mappers = [];
18
+        $this->mappers=[];
19 19
         foreach ($mappers as $mapper) {
20 20
             $this->addMapper($mapper);
21 21
         }
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
     {
26 26
         return array_reduce(
27 27
             $this->mappers,
28
-            function (array $carry, ParamMapperInterface $mapper) use ($request, $propsMap) {
29
-                $carry = array_merge($carry, $mapper->map($request, $propsMap));
28
+            function(array $carry, ParamMapperInterface $mapper) use ($request, $propsMap) {
29
+                $carry=array_merge($carry, $mapper->map($request, $propsMap));
30 30
                 return $carry;
31 31
             },
32 32
             []
@@ -35,6 +35,6 @@  discard block
 block discarded – undo
35 35
 
36 36
     private function addMapper(ParamMapperInterface $mapper): void
37 37
     {
38
-        $this->mappers[] = $mapper;
38
+        $this->mappers[]=$mapper;
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
src/DependencyInjection/CompilerPass/ParamMapperPass.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 
10 10
 final class ParamMapperPass implements CompilerPassInterface
11 11
 {
12
-    public const COLLECTOR_SVC_ID = 'eps.req2cmd.collector.param_collector';
13
-    public const MAPPER_TAG = 'req2cmd.param_mapper';
12
+    public const COLLECTOR_SVC_ID='eps.req2cmd.collector.param_collector';
13
+    public const MAPPER_TAG='req2cmd.param_mapper';
14 14
 
15 15
     /**
16 16
      * {@inheritdoc}
@@ -21,20 +21,20 @@  discard block
 block discarded – undo
21 21
             return;
22 22
         }
23 23
 
24
-        $collector = $container->findDefinition(self::COLLECTOR_SVC_ID);
25
-        $mappersDefinitions = $container->findTaggedServiceIds(self::MAPPER_TAG);
26
-        $queue = new \SplPriorityQueue();
24
+        $collector=$container->findDefinition(self::COLLECTOR_SVC_ID);
25
+        $mappersDefinitions=$container->findTaggedServiceIds(self::MAPPER_TAG);
26
+        $queue=new \SplPriorityQueue();
27 27
 
28 28
         foreach ($mappersDefinitions as $mapperId => $mapperTags) {
29 29
             foreach ($mapperTags as $tagAttributes) {
30
-                $priority = $tagAttributes['priority'] ?? 0;
30
+                $priority=$tagAttributes['priority'] ?? 0;
31 31
                 $queue->insert($mapperId, $priority);
32 32
             }
33 33
         }
34 34
 
35
-        $mappers = [];
35
+        $mappers=[];
36 36
         foreach ($queue as $mapperId) {
37
-            $mappers[] = new Reference($mapperId);
37
+            $mappers[]=new Reference($mapperId);
38 38
         }
39 39
 
40 40
         $collector->replaceArgument(0, $mappers);
Please login to merge, or discard this patch.
src/CommandBus/TacticianCommandBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
     public function __construct(CommandBus $commandBus)
16 16
     {
17
-        $this->commandBus = $commandBus;
17
+        $this->commandBus=$commandBus;
18 18
     }
19 19
 
20 20
     public function handleCommand($command): void
Please login to merge, or discard this patch.
src/Action/ApiResponderAction.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@  discard block
 block discarded – undo
16 16
 
17 17
     public function __construct(CommandBusInterface $commandBus)
18 18
     {
19
-        $this->commandBus = $commandBus;
19
+        $this->commandBus=$commandBus;
20 20
     }
21 21
 
22 22
     public function __invoke(Request $request): Response
23 23
     {
24
-        $command = $request->attributes->get('_command');
24
+        $command=$request->attributes->get('_command');
25 25
         if ($command === null) {
26 26
             throw new \InvalidArgumentException('No _command argument found for action');
27 27
         }
@@ -34,16 +34,16 @@  discard block
 block discarded – undo
34 34
     {
35 35
         switch ($request->getMethod()) {
36 36
             case Request::METHOD_PUT:
37
-                $statusCode = Response::HTTP_OK;
37
+                $statusCode=Response::HTTP_OK;
38 38
                 break;
39 39
             case Request::METHOD_POST:
40
-                $statusCode = Response::HTTP_CREATED;
40
+                $statusCode=Response::HTTP_CREATED;
41 41
                 break;
42 42
             case Request::METHOD_DELETE:
43
-                $statusCode = Response::HTTP_NO_CONTENT;
43
+                $statusCode=Response::HTTP_NO_CONTENT;
44 44
                 break;
45 45
             default:
46
-                $statusCode = Response::HTTP_OK;
46
+                $statusCode=Response::HTTP_OK;
47 47
         }
48 48
 
49 49
         return $statusCode;
Please login to merge, or discard this patch.