BasicEmitter.php 345 B

1234567891011121314
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OC\Hooks;
  8. /**
  9. * @deprecated 18.0.0 use \OCP\EventDispatcher\IEventDispatcher
  10. */
  11. abstract class BasicEmitter implements Emitter {
  12. use EmitterTrait;
  13. }