for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\Atom;
/**
* Class representing AtomPersonConstructType
*
* XSD Type: atomPersonConstruct
*/
class AtomPersonConstructType
{
* @property string $base
private $base = null;
* @property string $lang
private $lang = null;
* @property string $name
private $name = null;
* @property string $uri
private $uri = null;
* @property string $email
private $email = 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 name
public function getName()
return $this->name;
* Sets a new name
* @param string $name
public function setName($name)
$this->name = $name;
* Gets as uri
public function getUri()
return $this->uri;
* Sets a new uri
* @param string $uri
public function setUri($uri)
$this->uri = $uri;
* Gets as email
public function getEmail()
return $this->email;
* Sets a new email
* @param string $email
public function setEmail($email)
$this->email = $email;