for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\Atom;
/**
* Class representing Link
*/
class Link extends UndefinedContentType
{
* @property string $base
private $base = null;
* @property string $lang
private $lang = null;
* @property mixed $href
private $href = null;
* @property mixed $rel
private $rel = null;
* @property string $type
private $type = null;
* @property string $hreflang
private $hreflang = null;
* @property mixed $title
private $title = null;
* @property mixed $length
private $length = 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 href
* @return mixed
public function getHref()
return $this->href;
* Sets a new href
* @param mixed $href
public function setHref($href)
$this->href = $href;
* Gets as rel
public function getRel()
return $this->rel;
* Sets a new rel
* @param mixed $rel
public function setRel($rel)
$this->rel = $rel;
* Gets as type
public function getType()
return $this->type;
* Sets a new type
* @param string $type
public function setType($type)
$this->type = $type;
* Gets as hreflang
public function getHreflang()
return $this->hreflang;
* Sets a new hreflang
* @param string $hreflang
public function setHreflang($hreflang)
$this->hreflang = $hreflang;
* Gets as title
public function getTitle()
return $this->title;
* Sets a new title
* @param mixed $title
public function setTitle($title)
$this->title = $title;
* Gets as length
public function getLength()
return $this->length;
* Sets a new length
* @param mixed $length
public function setLength($length)
$this->length = $length;