| Total Complexity | 4 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class AccountRecoveryDataEditEvent extends Event |
||
| 18 | { |
||
| 19 | /** @var AccountRecoveryData */ |
||
| 20 | private $accountRecoveryData; |
||
| 21 | |||
| 22 | /** @var Response */ |
||
| 23 | private $response; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * AccountRecoveryDataEditEvent constructor. |
||
| 27 | * @param AccountRecoveryData $accountRecoveryData |
||
| 28 | * @param Response|null $response |
||
| 29 | */ |
||
| 30 | public function __construct(AccountRecoveryData $accountRecoveryData, Response $response = null) |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return AccountRecoveryData |
||
| 38 | */ |
||
| 39 | public function getAccountRecoveryData(): AccountRecoveryData |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return Response |
||
| 46 | */ |
||
| 47 | public function getResponse(): ?Response |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param Response $response |
||
| 54 | * @return AccountRecoveryDataEditEvent |
||
| 55 | */ |
||
| 56 | public function setResponse(Response $response): AccountRecoveryDataEditEvent |
||
| 63 |