nextcloud/lib/private/Hooks/BasicEmitter.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
345 B
PHP
Raw Normal View History

2013-05-07 10:34:09 -04:00
<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2013-05-07 10:34:09 -04:00
*/
namespace OC\Hooks;
/**
* @deprecated 18.0.0 use \OCP\EventDispatcher\IEventDispatcher
*/
2013-05-07 10:34:09 -04:00
abstract class BasicEmitter implements Emitter {
2015-05-07 07:37:38 -04:00
use EmitterTrait;
2013-05-07 10:34:09 -04:00
}