How to use Email as a Doctrine type
July 24, 2020 · View on GitHub
Do you like this library? Leave a ★ or run composer global require symfony/thanks && composer thanks to say thank you to all libraries you use in your current project, this included!
How to use Email as a Doctrine type
NOTE: You can read more about Doctrine's Embeddables here: Types
To use the Doctrine's type, you have to follow those steps:
- Register the type in your Symfony's configuration;
- Implement the type in your entity.
STEP 1: Register the type in your Symfony's configuration
Open the file /config/packages/doctrine.yaml.
Add the type to the configuration:
doctrine:
dbal:
...
types:
email: 'SerendipityHQ\Component\ValueObjects\Email\Bridge\Doctrine\EmailType'
...
STEP 2: Implement the Email type in your entity
Implement the email type in your entity:
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use SerendipityHQ\Component\ValueObjects\Email\EmailInterface;
/**
* @ORM\Entity()
*/
class User
{
...
/**
* @var EmailInterface
* @ORM\Column(type="email")
*/
private $email;
...
}
Do you like this library? Leave a ★ or run composer global require symfony/thanks && composer thanks to say thank you to all libraries you use in your current project, this included!