ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
UserEvent.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\User;
22
24
26{
27 public function __construct(
28 protected InternalDomainService $domain
29 ) {
30
31 }
32
33 public function handleDeletion(int $user_id): void
34 {
35 $p = $this->domain->participants();
36 $p->removeFromAll($user_id);
37 }
38}
Author: Alexander Killing killing@leifos.de
handleDeletion(int $user_id)
Definition: UserEvent.php:33
__construct(protected InternalDomainService $domain)
Definition: UserEvent.php:27
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: UserEvent.php:21