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\Node;
class Category implements CategoryInterface
{
/**
* @var string
protected $term;
protected $scheme;
protected $label;
* @return null|string
public function getTerm() : ? string
return $this->term;
}
* @param string $term
* @return CategoryInterface
public function setTerm(string $term = null) : CategoryInterface
$this->term = $term;
return $this;
public function getScheme() : ? string
return $this->scheme;
* @param string $scheme
public function setScheme(string $scheme = null) : CategoryInterface
$this->scheme = $scheme;
public function getLabel() : ? string
return $this->label;
* @param string $label
public function setLabel(string $label = null) : CategoryInterface
$this->label = $label;