mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Controller and Entity draft
This commit is contained in:
24
application/src/Entity/ConfigurationInterface.php
Normal file
24
application/src/Entity/ConfigurationInterface.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace App\Entity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
interface ConfigurationInterface
|
||||
{
|
||||
public function setRead(Property $read):void;
|
||||
|
||||
public function getRead():Property;
|
||||
|
||||
public function setWrite(Property $write):void;
|
||||
|
||||
public function getWrite():Property;
|
||||
|
||||
public function setAdministrate(Property $administrate):void;
|
||||
|
||||
public function getAdministrate():Property;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user