How to use the Doctrine command line developing a Symfony Bundle
Maybe you need to use the Doctrine’s command line while you are developing a Symfony Bundle (or anything else). This will make you able, for example, to validate the schema or to convert an annotated schema to its XML counterpart. Here is how to use Doctrine command line outside of a Symfony Application.
Value Objects, Immutable objects and Doctrine Embeddables
I was thinking about some entities I need, when I came across a very interesting concept: Immutable Objects. The Immutable Objects are very handy to manage the so called Value Objects. In the Domain Driven Design (DDD) properties of an Entity can have two different values: other Entities (Order->getProduct() – here Product is an Entity and […]