Skip to content

Commit

Permalink
refactor: run rector
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Nov 29, 2023
1 parent 2c4364a commit 5d99f3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions system/Config/Factories.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ final class Factories
*
* @var array<string, array<string, bool|string|null>>
*/
private static $options = [];
private static array $options = [];

/**
* Explicit options for the Config
Expand Down Expand Up @@ -64,7 +64,7 @@ final class Factories
*
* @var array<string, array<string, class-string>>
*/
private static $aliases = [];
private static array $aliases = [];

/**
* Store for instances of any component that
Expand All @@ -77,7 +77,7 @@ final class Factories
*
* @var array<string, array<class-string, object>>
*/
private static $instances = [];
private static array $instances = [];

/**
* Whether the component instances are updated?
Expand All @@ -86,7 +86,7 @@ final class Factories
*
* @internal For caching only
*/
private static $updated = [];
private static array $updated = [];

/**
* Define the class to load. You can *override* the concrete class.
Expand Down

0 comments on commit 5d99f3d

Please sign in to comment.