aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Cache/AbstractCacheEvent.php
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2019-10-21 13:40:36 +0200
committerGitHub <noreply@github.com>2019-10-21 13:40:36 +0200
commit923735021b35d08aadf00cb30e3e9eda42f50a50 (patch)
tree39a7c91f16135278f8a8155e933600214a30eb05 /lib/private/Files/Cache/AbstractCacheEvent.php
parent2905e8d6cf9979c54fe9f0ca88f21f291ec7d4ea (diff)
parente8095cf7372a8e95ca0f57ada1ddb8712aebce9a (diff)
downloadnextcloud-server-923735021b35d08aadf00cb30e3e9eda42f50a50.tar.gz
nextcloud-server-923735021b35d08aadf00cb30e3e9eda42f50a50.zip
Merge pull request #17568 from nextcloud/fix/noid/move-away-from-deprecated-event
use OCP\EventDispatcher\Event over Symfony's deprecated Event
Diffstat (limited to 'lib/private/Files/Cache/AbstractCacheEvent.php')
-rw-r--r--lib/private/Files/Cache/AbstractCacheEvent.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/AbstractCacheEvent.php b/lib/private/Files/Cache/AbstractCacheEvent.php
index c8a41ce54d8..db1e7a1cf32 100644
--- a/lib/private/Files/Cache/AbstractCacheEvent.php
+++ b/lib/private/Files/Cache/AbstractCacheEvent.php
@@ -23,7 +23,7 @@ namespace OC\Files\Cache;
use OCP\Files\Cache\ICacheEvent;
use OCP\Files\Storage\IStorage;
-use Symfony\Component\EventDispatcher\Event;
+use OCP\EventDispatcher\Event;
class AbstractCacheEvent extends Event implements ICacheEvent {
protected $storage;