mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Optimized entity mapping
This commit is contained in:
@@ -12,7 +12,7 @@ use App\Entity\Attribut\RelationAttribut;
|
||||
* @ORM\Table(name="meta_law")
|
||||
* @ORM\Entity(repositoryClass="App\Repository\LawRepository")
|
||||
*/
|
||||
final class Law extends AbstractMeta implements LawInterface
|
||||
class Law extends AbstractMeta implements LawInterface
|
||||
{
|
||||
use RightsAttribute, RelationAttribut;
|
||||
|
||||
|
@@ -22,7 +22,7 @@ use Doctrine\Common\Collections\Collection;
|
||||
* @ORM\Table(name="meta_relation")
|
||||
* @ORM\Entity()
|
||||
*/
|
||||
final class Relation extends AbstractMeta implements RelationInterface
|
||||
class Relation extends AbstractMeta implements RelationInterface
|
||||
{
|
||||
use IdAttribut,
|
||||
SourceAttribut,
|
||||
|
@@ -20,7 +20,7 @@ use App\Entity\Attribut\RelationAttribut;
|
||||
* @ORM\Table(name="meta_right")
|
||||
* @ORM\Entity(repositoryClass="App\Repository\RightRepository")
|
||||
*/
|
||||
final class Right extends AbstractMeta implements RightInterface
|
||||
class Right extends AbstractMeta implements RightInterface
|
||||
{
|
||||
use TypeAttribut,LawAttribut, RelationAttribut, GrantAttribut,ConditionAttribut,RecieverAttribut,LayerAttribut;
|
||||
|
||||
|
Reference in New Issue
Block a user