@@ -36,7 +36,7 @@ final class Factories
36
36
*
37
37
* @var array<string, array<string, bool|string|null>>
38
38
*/
39
- private static $ options = [];
39
+ private static array $ options = [];
40
40
41
41
/**
42
42
* Explicit options for the Config
@@ -64,7 +64,7 @@ final class Factories
64
64
*
65
65
* @var array<string, array<string, class-string>>
66
66
*/
67
- private static $ aliases = [];
67
+ private static array $ aliases = [];
68
68
69
69
/**
70
70
* Store for instances of any component that
@@ -77,7 +77,7 @@ final class Factories
77
77
*
78
78
* @var array<string, array<class-string, object>>
79
79
*/
80
- private static $ instances = [];
80
+ private static array $ instances = [];
81
81
82
82
/**
83
83
* Whether the component instances are updated?
@@ -86,7 +86,7 @@ final class Factories
86
86
*
87
87
* @internal For caching only
88
88
*/
89
- private static $ updated = [];
89
+ private static array $ updated = [];
90
90
91
91
/**
92
92
* Define the class to load. You can *override* the concrete class.
0 commit comments