for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\Atom;
/**
* Class representing Category
*/
class Category extends UndefinedContentType
{
* @property string $base
private $base = null;
* @property string $lang
private $lang = null;
* @property mixed $term
private $term = null;
* @property mixed $scheme
private $scheme = null;
* @property mixed $label
private $label = null;
* Gets as base
*
* @return string
public function getBase()
return $this->base;
}
* Sets a new base
* @param string $base
* @return self
public function setBase($base)
$this->base = $base;
return $this;
* Gets as lang
public function getLang()
return $this->lang;
* Sets a new lang
* @param string $lang
public function setLang($lang)
$this->lang = $lang;
* Gets as term
* @return mixed
public function getTerm()
return $this->term;
* Sets a new term
* @param mixed $term
public function setTerm($term)
$this->term = $term;
* Gets as scheme
public function getScheme()
return $this->scheme;
* Sets a new scheme
* @param mixed $scheme
public function setScheme($scheme)
$this->scheme = $scheme;
* Gets as label
public function getLabel()
return $this->label;
* Sets a new label
* @param mixed $label
public function setLabel($label)
$this->label = $label;