| Total Complexity | 3 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | final class AfterPasswordUpdatedEvent | ||
| 14 | { | ||
| 15 | private ChangePassword $changePassword; | ||
| 16 | private PasswordController $passwordController; | ||
| 17 | |||
| 18 | public function __construct(ChangePassword $changePassword, PasswordController $passwordController) | ||
| 19 |     { | ||
| 20 | $this->changePassword = $changePassword; | ||
| 21 | $this->passwordController = $passwordController; | ||
| 22 | } | ||
| 23 | |||
| 24 | public function getChangePassword(): ChangePassword | ||
| 25 |     { | ||
| 26 | return $this->changePassword; | ||
| 27 | } | ||
| 28 | |||
| 29 | public function getPasswordController(): PasswordController | ||
| 32 | } | ||
| 33 | } | ||
| 34 |