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 MediaLicense implements MediaLicenseInterface
{
/**
* @var string
protected $content;
protected $url;
protected $type;
* @return string
public function getContent() : ?string
return $this->content;
}
* @param string $content
* @return MediaLicenseInterface
public function setContent(?string $content) : MediaLicenseInterface
$this->content = $content;
return $this;
public function getUrl() : ?string
return $this->url;
* @param string $url
public function setUrl(?string $url) : MediaLicenseInterface
$this->url = $url;
public function getType() : ?string
return $this->type;
* @param string $type
public function setType(?string $type) : MediaLicenseInterface
$this->type = $type;