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 MediaCategory implements MediaCategoryInterface
{
/**
* @var string
protected $text;
protected $label;
protected $scheme;
* @return string
public function getText() : ?string
return $this->text;
}
* @param string $text
* @return MediaCategoryInterface
public function setText(?string $text) : MediaCategoryInterface
$this->text = $text;
return $this;
public function getLabel() : ?string
return $this->label;
* @param string $label
public function setLabel(?string $label) : MediaCategoryInterface
$this->label = $label;
public function getScheme() : ?string
return $this->scheme;
* @param string $scheme
public function setScheme(?string $scheme) : MediaCategoryInterface
$this->scheme = $scheme;