This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class EmailConfirmation | |
{ | |
public function __construct( | |
UserRepositoryInterface $userRepository, | |
TokenGeneraotorInterface $tokenGenerator, | |
MailerInterface $mailer | |
) | |
{ | |
$this->userRepository = $userRepository; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class EmailConfirmation | |
{ | |
public function __construct( | |
UserRepositoryInterface $userRepository, | |
TokenGeneraotorInterface $tokenGenerator, | |
MailerInterface $mailer | |
) | |
{ | |
$this->userRepository = $userRepository; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ExampleValueObject | |
{ | |
private string $value; | |
/** | |
* ExampleValueObject constructor. | |
* | |
* @param string $exampleValue some example value |