mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 21:08:13 +02:00
33 lines
506 B
PHP
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
|
|
{}
|
|
|
|
}
|
|
|