nextcloud/lib/private/Hooks/Emitter.php

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

37 lines
980 B
PHP
Raw Normal View History

2013-05-07 10:34:09 -04:00
<?php
2013-05-07 10:34:09 -04:00
/**
* 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;
/**
* Class Emitter
*
* interface for all classes that are able to emit events
*
* @package OC\Hooks
* @deprecated 18.0.0 use events and the \OCP\EventDispatcher\IEventDispatcher service
2013-05-07 10:34:09 -04:00
*/
interface Emitter {
/**
* @param string $scope
* @param string $method
* @param callable $callback
* @return void
* @deprecated 18.0.0 use \OCP\EventDispatcher\IEventDispatcher::addListener
2013-05-07 10:34:09 -04:00
*/
2015-05-08 08:27:22 -04:00
public function listen($scope, $method, callable $callback);
2013-05-07 10:34:09 -04:00
/**
* @param string $scope optional
* @param string $method optional
* @param callable $callback optional
* @return void
* @deprecated 18.0.0 use \OCP\EventDispatcher\IEventDispatcher::removeListener
2013-05-07 10:34:09 -04:00
*/
public function removeListener($scope = null, $method = null, ?callable $callback = null);
2013-05-07 10:34:09 -04:00
}