Completed
Branch master (9645b9)
by Neomerx
02:19
created
src/Exceptions/JsonApiException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     private $httpCode;
55 55
 
56 56
     /**
57
-     * @param ErrorInterface|iterable $errors
57
+     * @param ErrorInterface $errors
58 58
      * @param int                     $httpCode
59 59
      * @param Exception|null          $previous
60 60
      *
Please login to merge, or discard this patch.
src/Http/Query/BaseQueryParserTrait.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * @param array  $parameters
31 31
      * @param string $errorTitle
32 32
      *
33
-     * @return iterable
33
+     * @return \Generator
34 34
      */
35 35
     protected function getIncludes(array $parameters, string $errorTitle): iterable
36 36
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param array  $parameters
48 48
      * @param string $errorTitle
49 49
      *
50
-     * @return iterable
50
+     * @return \Generator
51 51
      */
52 52
     protected function getFields(array $parameters, string $errorTitle): iterable
53 53
     {
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      * @param array  $parameters
68 68
      * @param string $errorTitle
69 69
      *
70
-     * @return iterable
70
+     * @return \Generator
71 71
      */
72 72
     protected function getSorts(array $parameters, string $errorTitle): iterable
73 73
     {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      * @param array  $parameters
100 100
      * @param string $errorTitle
101 101
      *
102
-     * @return iterable
102
+     * @return \Generator
103 103
      */
104 104
     protected function getProfileUrls(array $parameters, string $errorTitle): iterable
105 105
     {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      * @param string|mixed $shouldBeString
120 120
      * @param string       $errorTitle
121 121
      *
122
-     * @return iterable
122
+     * @return \Generator
123 123
      */
124 124
     private function splitCommaSeparatedStringAndCheckNoEmpties(
125 125
         string $paramName,
@@ -131,10 +131,10 @@  discard block
 block discarded – undo
131 131
 
132 132
     /**
133 133
      * @param string       $paramName
134
-     * @param string|mixed $shouldBeString
134
+     * @param string $shouldBeString
135 135
      * @param string       $errorTitle
136 136
      *
137
-     * @return iterable
137
+     * @return \Generator
138 138
      */
139 139
     private function splitSpaceSeparatedStringAndCheckNoEmpties(
140 140
         string $paramName,
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      * @param string       $separator
151 151
      * @param string       $errorTitle
152 152
      *
153
-     * @return iterable
153
+     * @return \Generator
154 154
      */
155 155
     private function splitStringAndCheckNoEmpties(
156 156
         string $paramName,
Please login to merge, or discard this patch.
src/Schema/Link.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,6 +138,6 @@
 block discarded – undo
138 138
      */
139 139
     protected function buildUrl(string $prefix): string
140 140
     {
141
-        return $this->isSubUrl() ? $prefix . $this->getValue() : $this->getValue();
141
+        return $this->isSubUrl() ? $prefix.$this->getValue() : $this->getValue();
142 142
     }
143 143
 }
Please login to merge, or discard this patch.
src/Representation/FieldSetFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      * @param string   $type
118 118
      * @param iterable $fields
119 119
      *
120
-     * @return iterable
120
+     * @return \Generator
121 121
      */
122 122
     protected function filterFields(string $type, iterable $fields): iterable
123 123
     {
Please login to merge, or discard this patch.
src/Schema/BaseSchema.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         // Feel free to override this method to change default URL or add meta
75 75
 
76
-        $url = $this->getSelfSubUrl($resource) . '/' . DocumentInterface::KEYWORD_RELATIONSHIPS . '/' . $name;
76
+        $url = $this->getSelfSubUrl($resource).'/'.DocumentInterface::KEYWORD_RELATIONSHIPS.'/'.$name;
77 77
 
78 78
         return $this->getFactory()->createLink(true, $url, false);
79 79
     }
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     {
86 86
         // Feel free to override this method to change default URL or add meta
87 87
 
88
-        $url = $this->getSelfSubUrl($resource) . '/' . $name;
88
+        $url = $this->getSelfSubUrl($resource).'/'.$name;
89 89
 
90 90
         return $this->getFactory()->createLink(true, $url, false);
91 91
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     protected function getResourcesSubUrl(): string
153 153
     {
154 154
         if ($this->subUrl === null) {
155
-            $this->subUrl = '/' . $this->getType();
155
+            $this->subUrl = '/'.$this->getType();
156 156
         }
157 157
 
158 158
         return $this->subUrl;
@@ -165,6 +165,6 @@  discard block
 block discarded – undo
165 165
      */
166 166
     protected function getSelfSubUrl($resource): string
167 167
     {
168
-        return $this->getResourcesSubUrl() . '/' . $this->getId($resource);
168
+        return $this->getResourcesSubUrl().'/'.$this->getId($resource);
169 169
     }
170 170
 }
Please login to merge, or discard this patch.
src/Schema/ErrorCollection.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
      */
567 567
     protected function getPathToData(): string
568 568
     {
569
-        return '/' . DocumentInterface::KEYWORD_DATA;
569
+        return '/'.DocumentInterface::KEYWORD_DATA;
570 570
     }
571 571
 
572 572
     /**
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
      */
575 575
     protected function getPathToType(): string
576 576
     {
577
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_TYPE;
577
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_TYPE;
578 578
     }
579 579
 
580 580
     /**
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
      */
583 583
     protected function getPathToId(): string
584 584
     {
585
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_ID;
585
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_ID;
586 586
     }
587 587
 
588 588
     /**
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
      */
591 591
     protected function getPathToAttributes(): string
592 592
     {
593
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_ATTRIBUTES;
593
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_ATTRIBUTES;
594 594
     }
595 595
 
596 596
     /**
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
      */
601 601
     protected function getPathToAttribute(string $name): string
602 602
     {
603
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_ATTRIBUTES . '/' . $name;
603
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_ATTRIBUTES.'/'.$name;
604 604
     }
605 605
 
606 606
     /**
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
      */
609 609
     protected function getPathToRelationships(): string
610 610
     {
611
-        return $this->getPathToData() . '/' . DocumentInterface::KEYWORD_RELATIONSHIPS;
611
+        return $this->getPathToData().'/'.DocumentInterface::KEYWORD_RELATIONSHIPS;
612 612
     }
613 613
 
614 614
     /**
@@ -618,7 +618,7 @@  discard block
 block discarded – undo
618 618
      */
619 619
     protected function getPathToRelationship(string $name): string
620 620
     {
621
-        return $this->getPathToRelationships() . '/' . $name;
621
+        return $this->getPathToRelationships().'/'.$name;
622 622
     }
623 623
 
624 624
     /**
@@ -628,8 +628,8 @@  discard block
 block discarded – undo
628 628
      */
629 629
     protected function getPathToRelationshipType(string $name): string
630 630
     {
631
-        return $this->getPathToRelationship($name) . '/' .
632
-            DocumentInterface::KEYWORD_DATA . '/' . DocumentInterface::KEYWORD_TYPE;
631
+        return $this->getPathToRelationship($name).'/'.
632
+            DocumentInterface::KEYWORD_DATA.'/'.DocumentInterface::KEYWORD_TYPE;
633 633
     }
634 634
 
635 635
     /**
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
      */
640 640
     protected function getPathToRelationshipId(string $name): string
641 641
     {
642
-        return $this->getPathToRelationship($name) . '/' .
643
-            DocumentInterface::KEYWORD_DATA . '/' . DocumentInterface::KEYWORD_ID;
642
+        return $this->getPathToRelationship($name).'/'.
643
+            DocumentInterface::KEYWORD_DATA.'/'.DocumentInterface::KEYWORD_ID;
644 644
     }
645 645
 }
Please login to merge, or discard this patch.
src/Parser/Parser.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     /** @var string */
49 49
     public const MSG_CAN_NOT_PARSE_RELATIONSHIP =
50
-        'For resource of type `%s` with ID `%s` relationship `%s` cannot be parsed because it either ' .
50
+        'For resource of type `%s` with ID `%s` relationship `%s` cannot be parsed because it either '.
51 51
         'has `null` or identifier as data. Skipping.';
52 52
 
53 53
     /**
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
         foreach ($paths as $path) {
534 534
             $curPath = '';
535 535
             foreach (explode($separator, $path) as $pathPart) {
536
-                $curPath                   = empty($curPath) === true ? $pathPart : $curPath . $separator . $pathPart;
536
+                $curPath                   = empty($curPath) === true ? $pathPart : $curPath.$separator.$pathPart;
537 537
                 $normalizedPaths[$curPath] = true;
538 538
             }
539 539
         }
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      * @see ResourceInterface
189 189
      * @see IdentifierInterface
190 190
      *
191
-     * @return iterable
191
+     * @return \Generator
192 192
      */
193 193
     private function parseAsResourcesOrIdentifiers(
194 194
         PositionInterface $position,
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      *
213 213
      * @see ResourceInterface
214 214
      *
215
-     * @return iterable
215
+     * @return \Generator
216 216
      *
217 217
      */
218 218
     private function parseAsResource(
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     /**
234 234
      * @param ResourceInterface $resource
235 235
      *
236
-     * @return iterable
236
+     * @return \Generator
237 237
      *
238 238
      * @SuppressWarnings(PHPMD.CyclomaticComplexity)
239 239
      */
Please login to merge, or discard this patch.
src/Parser/RelationshipData/BaseRelationshipData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     {
69 69
         assert(
70 70
             $this->schemaContainer->hasSchema($resource),
71
-            'No Schema found for resource `' . get_class($resource) . '`.'
71
+            'No Schema found for resource `'.get_class($resource).'`.'
72 72
         );
73 73
 
74 74
         return $this->factory->createParsedResource(
Please login to merge, or discard this patch.
src/Representation/ErrorWriter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             DocumentInterface::KEYWORD_ERRORS_TITLE  => $error->getTitle(),
52 52
             DocumentInterface::KEYWORD_ERRORS_DETAIL => $error->getDetail(),
53 53
             DocumentInterface::KEYWORD_ERRORS_SOURCE => $error->getSource(),
54
-         ]);
54
+            ]);
55 55
 
56 56
         if ($error->hasMeta() === true) {
57 57
             $representation[DocumentInterface::KEYWORD_ERRORS_META] = $error->getMeta();
Please login to merge, or discard this patch.