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 MediaRating implements MediaRatingInterface
{
/**
* @var string
protected $content;
protected $scheme;
* @return string
public function getContent() : ?string
return $this->content;
}
* @param string $content
* @return MediaRatingInterface
public function setContent(?string $content) : MediaRatingInterface
$this->content = $content;
return $this;
public function getScheme() : ?string
return $this->scheme;
* @param string $scheme
public function setScheme(?string $scheme) : MediaRatingInterface
$this->scheme = $scheme;