This commit is contained in:
Dennis Eichhorn 2018-02-03 13:09:09 +01:00
parent 3de797796d
commit 1123ebcca2
3 changed files with 6 additions and 7 deletions

View File

@ -19,7 +19,6 @@ use phpOMS\Module\UpdateAbstract;
use phpOMS\System\File\Directory; use phpOMS\System\File\Directory;
use phpOMS\Module\InfoManager; use phpOMS\Module\InfoManager;
/** /**
* Navigation class. * Navigation class.
* *

View File

@ -82,8 +82,8 @@ class Event
public function __construct(string $name = '') public function __construct(string $name = '')
{ {
$this->start = new \DateTime('now'); $this->start = new \DateTime('now');
$this->end = (new \DateTime('now'))->modify('+1 month'); $this->end = (new \DateTime('now'))->modify('+1 month');
$this->calendar = new Calendar(); $this->calendar = new Calendar();
$this->costs = new Money(); $this->costs = new Money();
$this->budget = new Money(); $this->budget = new Money();

View File

@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
*/ */
abstract class ProgressType extends Enum abstract class ProgressType extends Enum
{ {
/* public */ const MANUAL = 0; /* public */ const MANUAL = 0;
/* public */ const LINEAR = 1; /* public */ const LINEAR = 1;
/* public */ const EXPONENTIAL = 2; /* public */ const EXPONENTIAL = 2;
/* public */ const LOG = 3; /* public */ const LOG = 3;
/* public */ const TASKS = 4; /* public */ const TASKS = 4;
} }