Skip to content

Instantly share code, notes, and snippets.

@chalasr
Created February 5, 2016 10:30
Show Gist options
  • Save chalasr/397c78596c0faa5f0820 to your computer and use it in GitHub Desktop.
Save chalasr/397c78596c0faa5f0820 to your computer and use it in GitHub Desktop.
Selective mapping inheritance in Doctrine2
<?php
namespace App\Util\Doctrine\Entity;
/**
* Base Entity.
*/
class BaseEntity
{
/**
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/** @ORMColumn(type="string") */
protected $foo;
}
<?php
namespace App\Util\Doctrine\Entity;
use App\Util\Doctrine\Entity\BaseEntity as Base;
trait CanHaveExtraFieldsTrait extends Base
{
/** @ORM\Column(type="string") */
protected $bar;
}
<?php
namespace App\AcmeBundle\Entity;
use App\Util\Doctrine\Entity\BaseEntity as Base;
use App\Util\Doctrine\Entity\CanHaveExtraFieldsTrait as ExtraFields;
/**
* @ORM\Entity
* @ORM\Table(name="childs")
*/
class ChildWithExtraFields extends Base
{
use ExtraFields;
// Properties: id, foo, bar
}
<?php
namespace App\AcmeBundle\Entity;
use App\Util\Doctrine\Entity\BaseEntity as Base;
/**
* @ORM\Entity
* @ORM\Table(name="childs")
*/
class ChildWithExtraFields extends Base
{
// Properties: id, foo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment