Format code

This commit is contained in:
Marco Petersen
2018-09-12 23:25:22 +03:00
parent 60119c5b1b
commit f1b9ffd160
40 changed files with 257 additions and 301 deletions

View File

@@ -1,48 +1,48 @@
<?php
namespace App\Entity;
/**
*
* @author kevinfrantz
*
*/
class Configuration implements ConfigurationInterface
{
/**
*
* @var PropertyInterface
*/
protected $read;
/**
*
* @var PropertyInterface
*/
protected $write;
/**
*
* @var PropertyInterface
*/
protected $administrate;
public function setAdministrate(Property $administrate): void
{}
{
}
public function getAdministrate(): Property
{}
{
}
public function setWrite(Property $write): void
{}
{
}
public function getWrite(): Property
{}
{
}
public function setRead(Property $read): void
{}
{
}
public function getRead(): Property
{}
{
}
}