This file contains hidden or 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 | |
namespace Acme\Project\Model\User\Value; | |
use Acme\Project\Model\Core\Validation\Assert; | |
final class PhoneNumber | |
{ | |
/** | |
* @var string |
This file contains hidden or 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 | |
namespace Acme\Project\Model\User\ValueObject; | |
class UserId | |
{ | |
/** | |
* @var string | |
*/ | |
private $id; |