Skip to content

Instantly share code, notes, and snippets.

View pengend's full-sized avatar

Pengda Xia pengend

View GitHub Profile
@pengend
pengend / SocialBase.php
Created August 23, 2016 14:24 — forked from Problematic/SocialBase.php
Working example of Symfony2 entities with Class Table Inheritance
<?php
namespace UP\SocialBundle\Entity;
/**
* UP\SocialBundle\Entity\SocialBase
* @orm:Entity
* @orm:HasLifecycleCallbacks
* @orm:InheritanceType("JOINED")
* @orm:DiscriminatorColumn(name="class_name", type="string")
@pengend
pengend / SocialBase.php
Created August 23, 2016 14:24 — forked from Problematic/SocialBase.php
Working example of Symfony2 entities with Class Table Inheritance
<?php
namespace UP\SocialBundle\Entity;
/**
* UP\SocialBundle\Entity\SocialBase
* @orm:Entity
* @orm:HasLifecycleCallbacks
* @orm:InheritanceType("JOINED")
* @orm:DiscriminatorColumn(name="class_name", type="string")