Skip to content

Commit

Permalink
Update cache.php
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter authored Dec 27, 2023
1 parent cf20056 commit 8f2b658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/system/library/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public function __construct(string $adaptor, int $expire = 3600) {
*
* @param string $key The cache key name
*
* @return array|string|null
* @return mixed
*/
public function get(string $key): array|string|null {
public function get(string $key) {
return $this->adaptor->get($key);
}

Expand Down

0 comments on commit 8f2b658

Please sign in to comment.