Skip to content

Commit 5d99f3d

Browse files
committed
refactor: run rector
1 parent 2c4364a commit 5d99f3d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

system/Config/Factories.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ final class Factories
3636
*
3737
* @var array<string, array<string, bool|string|null>>
3838
*/
39-
private static $options = [];
39+
private static array $options = [];
4040

4141
/**
4242
* Explicit options for the Config
@@ -64,7 +64,7 @@ final class Factories
6464
*
6565
* @var array<string, array<string, class-string>>
6666
*/
67-
private static $aliases = [];
67+
private static array $aliases = [];
6868

6969
/**
7070
* Store for instances of any component that
@@ -77,7 +77,7 @@ final class Factories
7777
*
7878
* @var array<string, array<class-string, object>>
7979
*/
80-
private static $instances = [];
80+
private static array $instances = [];
8181

8282
/**
8383
* Whether the component instances are updated?
@@ -86,7 +86,7 @@ final class Factories
8686
*
8787
* @internal For caching only
8888
*/
89-
private static $updated = [];
89+
private static array $updated = [];
9090

9191
/**
9292
* Define the class to load. You can *override* the concrete class.

0 commit comments

Comments
 (0)