Modify fix

This commit is contained in:
Dennis Eichhorn 2016-03-13 21:46:37 +01:00
parent 10454d32f7
commit 85d6824831

View File

@ -64,10 +64,11 @@ class Project
private $tasks = [];
public function __construct(string $name = '') {
public function __construct(string $name = '')
{
$this->start = new \DateTime('now');
$this->end = new \DateTime('now');
$this->end->modify('+1M');
$this->end->modify('+1 month');
$this->createdAt = new \DateTime('now');
$this->calendar = new Calendar();