mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-01-29 17:54:59 +00:00
Controller and Entity draft
This commit is contained in:
29
application/src/Entity/Configuration.php
Normal file
29
application/src/Entity/Configuration.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
namespace App\Entity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
class Configuration extends AbstractSource implements ConfigurationInterface
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @var PropertyInterface
|
||||
*/
|
||||
protected $read;
|
||||
|
||||
/**
|
||||
*
|
||||
* @var PropertyInterface
|
||||
*/
|
||||
protected $write;
|
||||
|
||||
/**
|
||||
*
|
||||
* @var PropertyInterface
|
||||
*/
|
||||
protected $administrate;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user