44 lines
947 B
PHP
44 lines
947 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Event;
|
|
|
|
use App\Entity\Project;
|
|
use App\Model\ProjectStatistic;
|
|
|
|
final class ProjectStatisticEvent extends AbstractProjectEvent
|
|
{
|
|
private $statistic;
|
|
private $begin;
|
|
private $end;
|
|
|
|
public function __construct(Project $project, ProjectStatistic $statistic, \DateTime $begin = null, \DateTime $end = null)
|
|
{
|
|
parent::__construct($project);
|
|
$this->statistic = $statistic;
|
|
$this->begin = $begin;
|
|
$this->end = $end;
|
|
}
|
|
|
|
public function getStatistic(): ProjectStatistic
|
|
{
|
|
return $this->statistic;
|
|
}
|
|
|
|
public function getBegin(): ?\DateTime
|
|
{
|
|
return $this->begin;
|
|
}
|
|
|
|
public function getEnd(): ?\DateTime
|
|
{
|
|
return $this->end;
|
|
}
|
|
}
|