for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This class was automatically generated.
*/
namespace JobApis\Jobs\Client\Schema\Entity;
/**
* An organization such as a school, NGO, corporation, club, etc.
*
* @see http://schema.org/Organization Documentation on Schema.org
class Organization extends Thing
{
* @var PostalAddress Physical address of the item.
protected $address;
* @var string Email address.
protected $email;
* @var string An associated logo.
protected $logo;
* @var string The telephone number.
protected $telephone;
* Sets address.
* @param PostalAddress $address
* @return $this
public function setAddress(PostalAddress $address = null)
$this->address = $address;
return $this;
}
* Gets address.
* @return PostalAddress
public function getAddress()
return $this->address;
* Sets email.
* @param string $email
public function setEmail($email)
$this->email = $email;
* Gets email.
* @return string
public function getEmail()
return $this->email;
* Sets logo.
* @param string $logo
public function setLogo($logo)
$this->logo = $logo;
* Gets logo.
public function getLogo()
return $this->logo;
* Sets telephone.
* @param string $telephone
public function setTelephone($telephone)
$this->telephone = $telephone;
* Gets telephone.
public function getTelephone()
return $this->telephone;