Implemented orm entity tags and formated code

This commit is contained in:
Kevin Frantz
2018-11-25 23:19:38 +01:00
parent 884c4cfaea
commit 1252f41127
11 changed files with 35 additions and 26 deletions

View File

@@ -8,4 +8,4 @@ use App\Entity\Attribut\MembershipsAttributInterface;
interface MemberRelationInterface extends RelationInterface, MembersAttributInterface, MembershipsAttributInterface
{
}
}

View File

@@ -6,6 +6,10 @@ use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\Collection;
use App\Entity\Meta\Relation\CreatorRelationInterface;
/**
* @author kevinfrantz
* @ORM\Entity()
*/
class CreatorRelation extends AbstractParentRelation
{
/**

View File

@@ -5,6 +5,10 @@ namespace App\Entity\Meta\Relation\Parent;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* @author kevinfrantz
* @ORM\Entity()
*/
class HeredityRelation extends AbstractParentRelation implements HeredityRelationInterface
{
/**