1
0

CacheEntryInsertedEvent.php 364 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Files\Cache;
  8. /**
  9. * Event for when an existing entry in the cache gets inserted
  10. *
  11. * @since 21.0.0
  12. */
  13. class CacheEntryInsertedEvent extends AbstractCacheEvent implements ICacheEvent {
  14. }