mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 06:01:35 +01:00
Deleted unnecessary attribut
This commit is contained in:
parent
d2ffabec14
commit
0bc9ca20a9
@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Entity\Attribut;
|
||||
|
||||
use App\Entity\Attribut\ParentAttributInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
trait ParentAttribut
|
||||
{
|
||||
/**
|
||||
* @var ParentAttributInterface
|
||||
*/
|
||||
protected $parent;
|
||||
|
||||
public function setParent(ParentAttributInterface $parent): void
|
||||
{
|
||||
$this->parent = $parent;
|
||||
}
|
||||
|
||||
public function getParent(): ParentAttributInterface
|
||||
{
|
||||
return $this->parent;
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Attribut;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface ParentAttributInterface
|
||||
{
|
||||
public function setParent(ParentAttributInterface $parent): void;
|
||||
|
||||
public function getParent(): ParentAttributInterface;
|
||||
}
|
Loading…
Reference in New Issue
Block a user