Skip to content

Instantly share code, notes, and snippets.

@technolize
Last active August 29, 2015 14:10
Show Gist options
  • Save technolize/d894862fcb1a2ed37bf7 to your computer and use it in GitHub Desktop.
Save technolize/d894862fcb1a2ed37bf7 to your computer and use it in GitHub Desktop.
<?php
namespace ValueObject;
/** @Embeddable */
class Profile
{
/** @Embedded(class="Address") */
private $address;
}
/** @Embeddable */
class Address
{
/** @Column */
private $city;
/** @Column */
private $street;
/** @Column */
private $building;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment