File: /home/timetracker.panomity.com/tm.old/Form/Model/LogWorkModel.php
<?php
/*
* This file is part of the TaskManagementBundle for Kimai 2.
* All rights reserved by Kevin Papst (www.kevinpapst.de).
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace KimaiPlugin\TaskManagementBundle\Form\Model;
use DateTime;
final class LogWorkModel
{
/**
* @var DateTime|null
*/
private $begin;
/**
* @var DateTime|null
*/
private $end;
public function getBegin(): ?DateTime
{
return $this->begin;
}
public function setBegin(?DateTime $begin): void
{
$this->begin = $begin;
}
public function getEnd(): ?DateTime
{
return $this->end;
}
public function setEnd(?DateTime $end): void
{
$this->end = $end;
}
}