23
23
24
24
class PhpArrayToRelationshipCollectionEncoder implements PhpArrayToRelationshipCollectionEncoderInterface
25
25
{
26
- /** @var PhpArrayToMetaEncoderInterface */
27
- private $ phpArrayToMetaEncoder ;
28
-
29
- /** @var PhpArrayToLinkCollectionEncoderInterface */
30
- private $ phpArrayToLinkCollectionEncoder ;
31
-
32
26
public function __construct (
33
- PhpArrayToMetaEncoderInterface $ phpArrayToMetaEncoder ,
34
- PhpArrayToLinkCollectionEncoderInterface $ phpArrayToLinkCollectionEncoder
27
+ private PhpArrayToMetaEncoderInterface $ phpArrayToMetaEncoder ,
28
+ private PhpArrayToLinkCollectionEncoderInterface $ phpArrayToLinkCollectionEncoder
35
29
) {
36
- $ this ->phpArrayToMetaEncoder = $ phpArrayToMetaEncoder ;
37
- $ this ->phpArrayToLinkCollectionEncoder = $ phpArrayToLinkCollectionEncoder ;
38
30
}
39
31
40
32
/**
@@ -86,7 +78,7 @@ private function decodeRelationship(string $relationshipName, array $relationshi
86
78
}
87
79
88
80
/**
89
- * @param null|array<int,array<string,string>> $resourceLinkage
81
+ * @param null|array<int|string ,array<string,string>|string > $resourceLinkage
90
82
*
91
83
* @throws JsonApiEncodingException
92
84
*/
@@ -112,11 +104,13 @@ private function parseRelationshipData(?array $resourceLinkage): RelationshipDat
112
104
113
105
$ isAssociativeArray = ArrayUtil::isMap ($ resourceLinkage );
114
106
if (false === $ isAssociativeArray ) {
107
+ /** @var array<int,array<string,string>> $resourceLinkage */
115
108
$ identifiersCollection = $ this ->parseResourceIdentifierCollection ($ resourceLinkage );
116
109
117
110
return ToManyRelationshipData::make ($ identifiersCollection );
118
111
}
119
-
112
+ // at this point we have not null to one relationship
113
+ /** @var array<string,string> $resourceLinkage */
120
114
$ resourceIdentifier = new ResourceIdentifier (
121
115
$ resourceLinkage ['id ' ],
122
116
$ resourceLinkage ['type ' ],
@@ -126,6 +120,7 @@ private function parseRelationshipData(?array $resourceLinkage): RelationshipDat
126
120
return ToOneRelationshipData::make ($ resourceIdentifier );
127
121
}
128
122
123
+ /** @param array<int, array<string,string>> $data */
129
124
private function parseResourceIdentifierCollection (array $ data ): ResourceIdentifierCollection
130
125
{
131
126
$ resourceIdentifiers = [];
0 commit comments