Files
infinito/application/src/Entity/Property.php
2018-09-06 13:52:34 +02:00

33 lines
506 B
PHP

<?php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
/**
*
* @author kevinfrantz
*
*/
class Property implements PropertyInterface
{
/**
*
* @var ArrayCollection|NodeInterface[]
*/
protected $whitelist;
/**
*
* @var ArrayCollection|NodeInterface[]
*/
protected $blacklist;
public function getLegitimated(): ArrayCollection
{}
public function isLegitimated(SourceInterface $source): bool
{}
}