Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libraries/src/Cache/Storage/CacheStorageHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ class CacheStorageHelper
/**
* Cached item size
*
* @var string
* @var int
* @since 1.7.0
*/
public $size = 0;

/**
* Counter
*
* @var integer
* @var int
* @since 1.7.0
*/
public $count = 0;
Expand All @@ -59,7 +59,7 @@ public function __construct($group)
/**
* Increase cache items count.
*
* @param string $size Cached item size
* @param int $size Cached item size
*
* @return void
*
Expand Down