diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2019-10-21 13:40:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 13:40:36 +0200 |
commit | 923735021b35d08aadf00cb30e3e9eda42f50a50 (patch) | |
tree | 39a7c91f16135278f8a8155e933600214a30eb05 /lib/private/Files/Cache/AbstractCacheEvent.php | |
parent | 2905e8d6cf9979c54fe9f0ca88f21f291ec7d4ea (diff) | |
parent | e8095cf7372a8e95ca0f57ada1ddb8712aebce9a (diff) | |
download | nextcloud-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.php | 2 |
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; |