for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Superdesk Web Publisher Bridge Component.
*
* Copyright 2017 Sourcefabric z.ú. and contributors.
* For the full copyright and license information, please see the
* AUTHORS and LICENSE files distributed with this source code.
* @copyright 2017 Sourcefabric z.ú
* @license http://www.superdesk.org/license
*/
namespace SWP\Component\Bridge\Model\Event;
class Date implements DateInterface
{
/**
* @var string
protected $id;
* @var \DateTime
protected $startDate;
protected $endDate;
protected $tz;
* {@inheritdoc}
public function getId()
return $this->id;
}
public function getStartDate()
return $this->startDate;
public function setStartDate($startDate)
$this->startDate = $startDate;
public function getEndDate()
return $this->endDate;
public function setEndDate($endDate)
$this->endDate = $endDate;
public function getTz()
return $this->tz;
public function setTz($tz)
$this->tz = $tz;