for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace luya\web\jsonld;
trait ContactPointTrait
{
use ThingTrait;
private $_email;
public function setEmail($email)
$this->_email = $email;
return $this;
}
public function getEmail()
return $this->_email;
private $_telephone;
public function setTelephone($telephone)
$this->_telephone = $telephone;
public function getTelephone()
return $this->_telephone;