for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/*
* This file is part of the feed-io package.
*
* (c) Alexandre Debril <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FeedIo\Feed\Item;
class MediaScene
{
/**
* @var string
protected $title;
protected $description;
* @var \DateTime
protected $startTime;
protected $endTime;
* @param string $title
* @return MediaScene
public function setTitle(string $title) : MediaScene
$this->title = $title;
return $this;
}
public function getTitle() : string
return $this->title;
* @param string $description
public function setDescription(? string $description) : MediaScene
$this->description = $description;
public function getDescription() : ? string
return $this->description;
* @param \DateTime $startTime
public function setStartTime(? \DateTime $startTime) : MediaScene
$this->startTime = $startTime;
public function getStartTime() : ? \DateTime
return $this->startTime;
* @param \DateTime $endTime
public function setEndTime(? \DateTime $endTime) : MediaScene
$this->endTime = $endTime;
public function getEndTime() : ? \DateTime
return $this->endTime;