Created
February 5, 2016 10:30
-
-
Save chalasr/397c78596c0faa5f0820 to your computer and use it in GitHub Desktop.
Selective mapping inheritance in Doctrine2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Util\Doctrine\Entity; | |
use App\Util\Doctrine\Entity\BaseEntity as Base; | |
trait CanHaveExtraFieldsTrait extends Base | |
{ | |
/** @ORM\Column(type="string") */ | |
protected $bar; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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