aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Cache/CacheInsertEvent.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2019-02-18 15:47:54 +0100
committerRobin Appelman <robin@icewind.nl>2019-02-18 16:50:41 +0100
commit092f78d7a414011c64066707ef4798927e25814c (patch)
treed65f737892b59038c349ff8e0316c421a285ae6b /lib/public/Files/Cache/CacheInsertEvent.php
parent49e8093e15fb0626f32002da7cf73b7789f1a7d4 (diff)
downloadnextcloud-server-092f78d7a414011c64066707ef4798927e25814c.tar.gz
nextcloud-server-092f78d7a414011c64066707ef4798927e25814c.zip
add event for cache update
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/Files/Cache/CacheInsertEvent.php')
-rw-r--r--lib/public/Files/Cache/CacheInsertEvent.php48
1 files changed, 4 insertions, 44 deletions
diff --git a/lib/public/Files/Cache/CacheInsertEvent.php b/lib/public/Files/Cache/CacheInsertEvent.php
index 071f039d45f..6c2e3f34c72 100644
--- a/lib/public/Files/Cache/CacheInsertEvent.php
+++ b/lib/public/Files/Cache/CacheInsertEvent.php
@@ -21,52 +21,12 @@
namespace OCP\Files\Cache;
-use OCP\Files\Storage\IStorage;
-use Symfony\Component\EventDispatcher\Event;
+use OC\Files\Cache\AbstractCacheEvent;
/**
+ * Event for when a new entry gets added to the cache
+ *
* @since 16.0.0
*/
-class CacheInsertEvent extends Event {
- private $storage;
- private $path;
- private $fileId;
-
- /**
- * CacheInsertEvent constructor.
- *
- * @param IStorage $storage
- * @param string $path
- * @param int $fileId
- * @since 16.0.0
- */
- public function __construct(IStorage $storage, string $path, int $fileId) {
- $this->storage = $storage;
- $this->path = $path;
- $this->fileId = $fileId;
- }
-
- /**
- * @return IStorage
- * @since 16.0.0
- */
- public function getStorage(): IStorage {
- return $this->storage;
- }
-
- /**
- * @return string
- * @since 16.0.0
- */
- public function getPath(): string {
- return $this->path;
- }
-
- /**
- * @return int
- * @since 16.0.0
- */
- public function getFileId(): int {
- return $this->fileId;
- }
+class CacheInsertEvent extends AbstractCacheEvent {
}