@@ -98,7 +98,7 @@ abstract class Hydrator
98
98
* Will transfer the `foo` resource attribute to the model `foo` attribute, and the
99
99
* resource `bar` attribute to the model `baz` attribute.
100
100
*
101
- * @var Array<mixed >
101
+ * @var Array<int|string, string >
102
102
*/
103
103
protected array $ attributes = [];
104
104
@@ -117,7 +117,7 @@ abstract class Hydrator
117
117
* Will transfer the `foo` resource attribute to the model `foo` attribute, and the
118
118
* resource `bar` attribute to the model `baz` attribute.
119
119
*
120
- * @var Array<mixed >
120
+ * @var Array<int|string, string >
121
121
*/
122
122
protected array $ compositedAttributes = [];
123
123
@@ -128,13 +128,13 @@ abstract class Hydrator
128
128
*/
129
129
protected array $ relationships = [];
130
130
131
- /** @var Array<mixed >|null */
131
+ /** @var Array<string, string >|null */
132
132
private array |null $ normalizedAttributes = null ;
133
133
134
- /** @var Array<mixed >|null */
134
+ /** @var Array<string, string >|null */
135
135
private array |null $ normalizedCompositedAttributes = null ;
136
136
137
- /** @var Array<mixed >|null */
137
+ /** @var Array<string, string >|null */
138
138
private array |null $ normalizedRelationships = null ;
139
139
140
140
private Common \Annotations \Reader $ annotationReader ;
0 commit comments