mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
25 lines
439 B
PHP
25 lines
439 B
PHP
|
<?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;
|
||
|
|
||
|
}
|
||
|
|