@@ -87,7 +87,7 @@ |
||
87 | 87 | */ |
88 | 88 | public static function getCompare(): Closure |
89 | 89 | { |
90 | - return function (AcceptMediaTypeInterface $lhs, AcceptMediaTypeInterface $rhs) { |
|
90 | + return function(AcceptMediaTypeInterface $lhs, AcceptMediaTypeInterface $rhs) { |
|
91 | 91 | $qualityCompare = self::compareQuality($lhs->getQuality(), $rhs->getQuality()); |
92 | 92 | if ($qualityCompare !== 0) { |
93 | 93 | return $qualityCompare; |
@@ -54,7 +54,7 @@ |
||
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 | * |
@@ -117,7 +117,7 @@ |
||
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 | { |
@@ -566,7 +566,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -51,7 +51,7 @@ |
||
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(); |
@@ -84,7 +84,7 @@ |
||
84 | 84 | * @param bool $addSelfLink |
85 | 85 | * @param bool $addRelatedLink |
86 | 86 | * |
87 | - * @return iterable |
|
87 | + * @return \Generator |
|
88 | 88 | */ |
89 | 89 | private function parseLinks( |
90 | 90 | SchemaInterface $parentSchema, |
@@ -68,7 +68,7 @@ |
||
68 | 68 | |
69 | 69 | $nextPosition = $factory->createPosition( |
70 | 70 | $nextLevel, |
71 | - $nextPathPrefix . $name, |
|
71 | + $nextPathPrefix.$name, |
|
72 | 72 | $parentType, |
73 | 73 | $name |
74 | 74 | ); |
@@ -188,7 +188,7 @@ discard block |
||
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 |
||
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 |
||
233 | 233 | /** |
234 | 234 | * @param ResourceInterface $resource |
235 | 235 | * |
236 | - * @return iterable |
|
236 | + * @return \Generator |
|
237 | 237 | * |
238 | 238 | * @SuppressWarnings(PHPMD.CyclomaticComplexity) |
239 | 239 | */ |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | /** @var string */ |
51 | 51 | public const MSG_CAN_NOT_PARSE_RELATIONSHIP = |
52 | - 'For resource of type `%s` with ID `%s` relationship `%s` cannot be parsed because it either ' . |
|
52 | + 'For resource of type `%s` with ID `%s` relationship `%s` cannot be parsed because it either '. |
|
53 | 53 | 'has `null` or identifier as data. Skipping.'; |
54 | 54 | |
55 | 55 | /** @var string */ |
@@ -446,7 +446,7 @@ discard block |
||
446 | 446 | foreach ($paths as $path) { |
447 | 447 | $curPath = ''; |
448 | 448 | foreach (\explode($separator, $path) as $pathPart) { |
449 | - $curPath = empty($curPath) === true ? $pathPart : $curPath . $separator . $pathPart; |
|
449 | + $curPath = empty($curPath) === true ? $pathPart : $curPath.$separator.$pathPart; |
|
450 | 450 | $normalizedPaths[$curPath] = true; |
451 | 451 | } |
452 | 452 | } |
@@ -70,7 +70,7 @@ |
||
70 | 70 | { |
71 | 71 | \assert( |
72 | 72 | $this->schemaContainer->hasSchema($resource), |
73 | - 'No Schema found for resource `' . \get_class($resource) . '`.' |
|
73 | + 'No Schema found for resource `'.\get_class($resource).'`.' |
|
74 | 74 | ); |
75 | 75 | |
76 | 76 | return $this->factory->createParsedResource( |