diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-07-11 12:08:23 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-07-11 12:08:23 +0000 |
| commit | 11a599c30b14c83c6cf855cd87d611d876410ee7 (patch) | |
| tree | c3515fb96353d3c2237e0d691de1dae1baaf30c6 /lib/classes/cache/Cache.php | |
| parent | 6475ed8c9f4c811cfc1ad01f8ab8942918167006 (diff) | |
remove deprecation notice for Cache::read() and Cache::write(), fixes #3701
Closes #3701
Merge request studip/studip!3203
Diffstat (limited to 'lib/classes/cache/Cache.php')
| -rw-r--r-- | lib/classes/cache/Cache.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/classes/cache/Cache.php b/lib/classes/cache/Cache.php index be703cf..d66bf4c 100644 --- a/lib/classes/cache/Cache.php +++ b/lib/classes/cache/Cache.php @@ -97,8 +97,6 @@ abstract class Cache implements CacheItemPoolInterface * * @return mixed the previously stored data if an item with such a key * exists on the server or FALSE on failure. - * - * @deprecated To be removed with Stud.IP 7.0. */ public function read($arg) { @@ -117,8 +115,6 @@ abstract class Cache implements CacheItemPoolInterface * @param int $expires the item's expiry time in seconds. Optional, defaults to 12h. * * @return bool returns TRUE on success or FALSE on failure. - - * @deprecated To be removed with Stud.IP 7.0. */ public function write($name, $content, $expires = self::DEFAULT_EXPIRATION) { |
