12345678910111213141516171819202122232425262728293031323334 |
- <?php
- declare(strict_types=1);
- namespace OCP\User\Events;
- use OCP\EventDispatcher\Event;
- class UserIdAssignedEvent extends Event {
-
- public function __construct(
- private readonly string $userId,
- ) {
- parent::__construct();
- }
-
- public function getUserId(): string {
- return $this->userId;
- }
- }
|