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 MediaSubtitle
{
/**
* @var string
protected $type;
protected $lang;
protected $url;
* @param string $type
* @return MediaSubtitle
public function setType(? string $type) : MediaSubtitle
$this->type = $type;
return $this;
}
public function getType() : ? string
return $this->type;
* @param string $lang
public function setLang(? string $lang) : MediaSubtitle
$this->lang = $lang;
public function getLang() : ? string
return $this->lang;
* @param string|null url
public function setUrl(? string $url) : MediaSubtitle
$this->url = $url;
public function getUrl() : ? string
return $this->url;