Source of file Media.php
Size: 0,766 Bytes - Last Modified: 2020-12-03T03:00:25+00:00
/home/vagrant/Code/projects/podcast-feed-parser/src/Media.php
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | <?php namespace Lukaswhite\PodcastFeedParser; use Lukaswhite\PodcastFeedParser\Traits\HasUri; class Media { use HasUri; protected $length; protected $mimeType; /** * @return mixed */ public function getLength() { return $this->length; } /** * @param mixed $length * @return Media */ public function setLength($length) { $this->length = $length; return $this; } /** * @return mixed */ public function getMimeType() { return $this->mimeType; } /** * @param mixed $mimeType * @return Media */ public function setMimeType($mimeType) { $this->mimeType = $mimeType; return $this; } } |