diff options
Diffstat (limited to 'classes/DiskCache.php')
| -rw-r--r-- | classes/DiskCache.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/classes/DiskCache.php b/classes/DiskCache.php index c52759a75..70b8de173 100644 --- a/classes/DiskCache.php +++ b/classes/DiskCache.php @@ -1,10 +1,9 @@ <?php class DiskCache implements Cache_Adapter { - /** @var Cache_Adapter $adapter */ - private $adapter; + private Cache_Adapter $adapter; /** @var array<string, DiskCache> $instances */ - private static $instances = []; + private static array $instances = []; /** * https://stackoverflow.com/a/53662733 |