Skip to content

Instantly share code, notes, and snippets.

View PhazeonPhoenix's full-sized avatar

Phazeon Phoenix PhazeonPhoenix

View GitHub Profile
@PhazeonPhoenix
PhazeonPhoenix / gist:2008204
Created March 9, 2012 19:24
Symfony: ORM Entity (Doctrine)
<?php
namespace Acme\DemoBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity
* @ORM\Table(name="my_entity")
*/