mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-14 06:07:18 +02:00
Optimized implementation of format types
This commit is contained in:
@@ -2,14 +2,14 @@
|
||||
|
||||
namespace App\Entity\Attribut;
|
||||
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
use Doctrine\Common\Collections\Collection;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface ParentsAttributInterface
|
||||
{
|
||||
public function setParents(ArrayCollection $parents): void;
|
||||
public function setParents(Collection $parents): void;
|
||||
|
||||
public function getParents(): ArrayCollection;
|
||||
public function getParents(): Collection;
|
||||
}
|
||||
|
Reference in New Issue
Block a user