fix!: Remove User events which have a typed event replacement

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/39571/head
Joas Schilling 1 year ago
parent c67c067ee7
commit 35c313e280
No known key found for this signature in database
GPG Key ID: C400AAF20C1BB6FC
  1. 4
      lib/private/User/User.php

@ -271,8 +271,6 @@ class User implements IUser {
* @return bool
*/
public function delete() {
/** @deprecated 21.0.0 use BeforeUserDeletedEvent event with the IEventDispatcher instead */
$this->legacyDispatcher->dispatch(IUser::class . '::preDelete', new GenericEvent($this));
if ($this->emitter) {
/** @deprecated 21.0.0 use BeforeUserDeletedEvent event with the IEventDispatcher instead */
$this->emitter->emit('\OC\User', 'preDelete', [$this]);
@ -310,8 +308,6 @@ class User implements IUser {
$accountManager = \OCP\Server::get(AccountManager::class);
$accountManager->deleteUser($this);
/** @deprecated 21.0.0 use UserDeletedEvent event with the IEventDispatcher instead */
$this->legacyDispatcher->dispatch(IUser::class . '::postDelete', new GenericEvent($this));
if ($this->emitter) {
/** @deprecated 21.0.0 use UserDeletedEvent event with the IEventDispatcher instead */
$this->emitter->emit('\OC\User', 'postDelete', [$this]);

Loading…
Cancel
Save