mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 21:08:13 +02:00
Controller and Entity draft
This commit is contained in:
32
application/src/Entity/Property.php
Normal file
32
application/src/Entity/Property.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace App\Entity;
|
||||
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
class Property extends AbstractSource implements PropertyInterface
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @var ArrayCollection|NodeInterface[]
|
||||
*/
|
||||
protected $whitelist;
|
||||
|
||||
/**
|
||||
*
|
||||
* @var ArrayCollection|NodeInterface[]
|
||||
*/
|
||||
protected $blacklist;
|
||||
|
||||
public function getLegitimated(): ArrayCollection
|
||||
{}
|
||||
|
||||
public function isLegitimated(SourceInterface $source): bool
|
||||
{}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user