diff options
author | Robin Appelman <robin@icewind.nl> | 2020-11-26 15:39:46 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2020-11-26 15:39:46 +0100 |
commit | 88f35d52d2baf6421725ce5f2a40331afe13f1de (patch) | |
tree | bbcc20c2383086b71e1689764ab26fa1460bfc2c /lib/public/Files/Cache/CacheEntryRemovedEvent.php | |
parent | 23fb497ff59a90813cba24ca1c82be979cf95046 (diff) | |
download | nextcloud-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/CacheEntryRemovedEvent.php')
-rw-r--r-- | lib/public/Files/Cache/CacheEntryRemovedEvent.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/public/Files/Cache/CacheEntryRemovedEvent.php b/lib/public/Files/Cache/CacheEntryRemovedEvent.php new file mode 100644 index 00000000000..e257e1cfaa2 --- /dev/null +++ b/lib/public/Files/Cache/CacheEntryRemovedEvent.php @@ -0,0 +1,34 @@ +<?php + +declare(strict_types=1); +/** + * @copyright Copyright (c) 2020 Robin Appelman <robin@icewind.nl> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCP\Files\Cache; + +use OC\Files\Cache\AbstractCacheEvent; + +/** + * Event for when an existing entry in the cache gets removed + * + * @since 21.0.0 + */ +class CacheEntryRemovedEvent extends AbstractCacheEvent implements ICacheEvent { +} |