mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-15 22:56:04 +02:00
Refactored\moved Attribut folder
This commit is contained in:
22
application/symfony/src/Attribut/RightsAttributInterface.php
Normal file
22
application/symfony/src/Attribut/RightsAttributInterface.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Attribut;
|
||||
|
||||
use Doctrine\Common\Collections\Collection;
|
||||
use App\Entity\Meta\RightInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface RightsAttributInterface
|
||||
{
|
||||
/**
|
||||
* @param Collection|RightInterface[] $rights
|
||||
*/
|
||||
public function setRights(Collection $rights): void;
|
||||
|
||||
/**
|
||||
* @return Collection|RightInterface[]
|
||||
*/
|
||||
public function getRights(): Collection;
|
||||
}
|
Reference in New Issue
Block a user