aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Cache/CacheUpdateEvent.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2020-11-26 15:39:46 +0100
committerRobin Appelman <robin@icewind.nl>2020-11-26 15:39:46 +0100
commit88f35d52d2baf6421725ce5f2a40331afe13f1de (patch)
treebbcc20c2383086b71e1689764ab26fa1460bfc2c /lib/public/Files/Cache/CacheUpdateEvent.php
parent23fb497ff59a90813cba24ca1c82be979cf95046 (diff)
downloadnextcloud-server-88f35d52d2baf6421725ce5f2a40331afe13f1de.tar.gz
nextcloud-server-88f35d52d2baf6421725ce5f2a40331afe13f1de.zip
rename cache event to follow new naming standards
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/Files/Cache/CacheUpdateEvent.php')
-rw-r--r--lib/public/Files/Cache/CacheUpdateEvent.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/public/Files/Cache/CacheUpdateEvent.php b/lib/public/Files/Cache/CacheUpdateEvent.php
index f20056d2666..54397045398 100644
--- a/lib/public/Files/Cache/CacheUpdateEvent.php
+++ b/lib/public/Files/Cache/CacheUpdateEvent.php
@@ -26,12 +26,11 @@ declare(strict_types=1);
namespace OCP\Files\Cache;
-use OC\Files\Cache\AbstractCacheEvent;
-
/**
* Event for when an existing entry in the cache gets updated
*
* @since 16.0.0
+ * @deprecated 21.0.0 use CacheEntryUpdatedEvent instead
*/
-class CacheUpdateEvent extends AbstractCacheEvent {
+class CacheUpdateEvent extends CacheEntryUpdatedEvent {
}