2019-12-03 13:57:53 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2019-02-18 09:47:54 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-02-18 09:47:54 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Files\Cache;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Event for when an existing entry in the cache gets updated
|
|
|
|
|
*
|
|
|
|
|
* @since 16.0.0
|
2020-11-26 09:39:46 -05:00
|
|
|
* @deprecated 21.0.0 use CacheEntryUpdatedEvent instead
|
2019-02-18 09:47:54 -05:00
|
|
|
*/
|
2020-11-26 09:39:46 -05:00
|
|
|
class CacheUpdateEvent extends CacheEntryUpdatedEvent {
|
2019-02-18 09:47:54 -05:00
|
|
|
}
|