1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- declare(strict_types=1);
- namespace OCP\Security\Events;
- use OCP\EventDispatcher\Event;
- class GenerateSecurePasswordEvent extends Event {
-
- private $password;
-
- public function getPassword(): ?string {
- return $this->password;
- }
-
- public function setPassword(string $password): void {
- $this->password = $password;
- }
- }
|