123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- declare(strict_types=1);
- namespace OCP\Profile;
- use OCP\EventDispatcher\Event;
- class BeforeTemplateRenderedEvent extends Event {
- private string $userId;
-
- public function __construct(string $userId) {
- parent::__construct();
- $this->userId = $userId;
- }
-
- public function getUserId(): string {
- return $this->userId;
- }
- }
|