mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-16 03:46:25 +01:00
16 lines
256 B
PHP
16 lines
256 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RightsAttributInterface
|
|
{
|
|
public function setRights(Collection $rights): void;
|
|
|
|
public function getRights(): Collection;
|
|
}
|