Passed
Push — master ( 384709...16ae1e )
by Michael
09:23
created
src/Request/JsonApiDocumentParameterConverter.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      * Decode JSON
98 98
      *
99 99
      * @param  string $content
100
-     * @return mixed
100
+     * @return \stdClass
101 101
      * @throws BadRequestHttpException
102 102
      */
103 103
     protected function decodeContent(string $content): \stdClass
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,8 +101,7 @@
 block discarded – undo
101 101
 
102 102
         try {
103 103
             $document = $this->hydrator->hydrate($decoded);
104
-        }
105
-        catch (InvalidDocumentException $exception) {
104
+        } catch (InvalidDocumentException $exception) {
106 105
             throw new BadRequestHttpException('Document hydration error: ' . $exception->getMessage(), $exception);
107 106
         }
108 107
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Request;
5 5
 
@@ -73,17 +73,17 @@  discard block
 block discarded – undo
73 73
         $isOptional = $configuration->isOptional();
74 74
         $isJsonApi  = $this->isContentTypeValid($request);
75 75
 
76
-        if (! $isOptional && ! $isJsonApi) {
76
+        if (!$isOptional && !$isJsonApi) {
77 77
             throw new InvalidMediaTypeException($request);
78 78
         }
79 79
 
80 80
         $content = $request->getContent();
81 81
 
82
-        if (! empty($content)) {
82
+        if (!empty($content)) {
83 83
             return $content;
84 84
         }
85 85
 
86
-        if (! $isOptional) {
86
+        if (!$isOptional) {
87 87
             throw new BadRequestHttpException('Request body is empty');
88 88
         }
89 89
     }
Please login to merge, or discard this patch.
src/Routing/RouteRepository.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Get URL generator
69 69
      *
70
-     * @return UrlGeneratorInterface
70
+     * @return \Symfony\Component\Routing\Generator\UrlGeneratorInterface
71 71
      */
72 72
     protected function getUrlGenerator(): UrlGeneratorInterface
73 73
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * Assemble routes collection
86 86
      *
87
-     * @return RouteCollection
87
+     * @return \Symfony\Component\Routing\RouteCollection
88 88
      */
89 89
     protected function assembleRoutesCollection(): RouteCollection
90 90
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Routing;
5 5
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @param  array  $parameters Request parameters
60 60
      * @return string
61 61
      */
62
-    public function generate(string $name, array $parameters = []): string
62
+    public function generate(string $name, array $parameters = [ ]): string
63 63
     {
64 64
         return $this->getUrlGenerator()->generate($name, $parameters);
65 65
     }
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
 
93 93
         foreach ($this->routes as $name => $definition)
94 94
         {
95
-            $route = new Route($definition['path']);
96
-            $route->setMethods($definition['methods']);
95
+            $route = new Route($definition[ 'path' ]);
96
+            $route->setMethods($definition[ 'methods' ]);
97 97
 
98 98
             $collection->add($name, $route);
99 99
         }
Please login to merge, or discard this patch.
src/Response/Behaviour/IncludedObjectsAwareInterface.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
 namespace Mikemirten\Bundle\JsonApiBundle\Response\Behaviour;
5 5
 
Please login to merge, or discard this patch.
src/Response/Behaviour/HttpAttributesAwareInterface.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
 namespace Mikemirten\Bundle\JsonApiBundle\Response\Behaviour;
5 5
 
Please login to merge, or discard this patch.
src/Response/Behaviour/IncludedObjectsContainer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Response\Behaviour;
5 5
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      *
16 16
      * @var array
17 17
      */
18
-    protected $includedObjects = [];
18
+    protected $includedObjects = [ ];
19 19
 
20 20
     /**
21 21
      * Add included object to document
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function addIncludedObject($object)
26 26
     {
27
-        $this->includedObjects[] = $object;
27
+        $this->includedObjects[ ] = $object;
28 28
     }
29 29
 
30 30
     /**
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         foreach ($iterator as $object)
38 38
         {
39
-            $this->includedObjects[] = $object;
39
+            $this->includedObjects[ ] = $object;
40 40
         }
41 41
     }
42 42
 
Please login to merge, or discard this patch.
src/Response/Behaviour/HttpAttributesContainer.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Response\Behaviour;
5 5
 
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      *
18 18
      * @var array
19 19
      */
20
-    protected $headers = [];
20
+    protected $headers = [ ];
21 21
 
22 22
     /**
23 23
      * Set status code
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function setHeader(string $name, string $value)
51 51
     {
52
-        $this->headers[$name] = $value;
52
+        $this->headers[ $name ] = $value;
53 53
     }
54 54
 
55 55
     /**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         foreach ($headers as $name => $value)
63 63
         {
64
-            $this->headers[$name] = $value;
64
+            $this->headers[ $name ] = $value;
65 65
         }
66 66
     }
67 67
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function hasHeader(string $name): bool
75 75
     {
76
-        return isset($this->headers[$name]);
76
+        return isset($this->headers[ $name ]);
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.
src/Response/AbstractJsonApiView.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Response;
5 5
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @var Link[]
40 40
      */
41
-    protected $documentLinks = [];
41
+    protected $documentLinks = [ ];
42 42
 
43 43
     /**
44 44
      * Set a callback to call after a resource-object has created.
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
     {
110 110
         $name = $link->getName();
111 111
 
112
-        if (isset($this->documentLinks[$name])) {
112
+        if (isset($this->documentLinks[ $name ])) {
113 113
             throw new \LogicException(sprintf('Link "%s" already added to document.'));
114 114
         }
115 115
 
116
-        $this->documentLinks[$name] = $link;
116
+        $this->documentLinks[ $name ] = $link;
117 117
     }
118 118
 
119 119
     /**
Please login to merge, or discard this patch.
src/Response/JsonApiObjectView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Response;
5 5
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param int   $status
26 26
      * @param array $headers
27 27
      */
28
-    public function __construct($object, int $status = 200, array $headers = [])
28
+    public function __construct($object, int $status = 200, array $headers = [ ])
29 29
     {
30 30
         $this->object     = $object;
31 31
         $this->statusCode = $status;
Please login to merge, or discard this patch.
src/Response/JsonApiDocumentView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Mikemirten\Bundle\JsonApiBundle\Response;
5 5
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param int              $status
32 32
      * @param array            $headers
33 33
      */
34
-    public function __construct(AbstractDocument $document, int $status = 200, array $headers = [])
34
+    public function __construct(AbstractDocument $document, int $status = 200, array $headers = [ ])
35 35
     {
36 36
         $this->document   = $document;
37 37
         $this->statusCode = $status;
Please login to merge, or discard this patch.