infinito/application/src/Entity/PropertyInterface.php
2018-09-05 15:46:14 +02:00

18 lines
281 B
PHP

<?php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
/**
*
* @author kevinfrantz
*
*/
interface PropertyInterface
{
public function isLegitimated(SourceInterface $source):bool;
public function getLegitimated():ArrayCollection;
}