for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ZpgRtf\Objects;
/**
* This allows you to specify the eligibility of various classifications of applicant for a tenancy. Note that you do
* not have to specify eligibility for all classifications.
*/
class TenantEligibilityObject implements \JsonSerializable
{
* Enum (accepted, excluded, only)
*
* @var null|string
private $dss;
private $students;
* @return null|string
public function getDss()
return $this->dss;
}
* @param string $dss
* @return TenantEligibilityObject
public function setDss(string $dss): self
$this->dss = $dss;
return $this;
public function getStudents()
return $this->students;
* @param string $students
public function setStudents(string $students): self
$this->students = $students;
/** {@inheritDoc} */
public function jsonSerialize(): array
return array_filter([
'dss' => $this->getDss(),
'students' => $this->getStudents(),
]);