CodeExplorer EmptyReason example
public function getReasons() : array
{ return $this->reasons;
} public function reason() : Reason
{ return 0 !==
count($this->reasons
) ?
current($this->reasons
) :
new EmptyReason();
} public function description() : string
{ $description = '';
foreach($this->reasons
as $reason) { $description .=
$reason->
description() . PHP_EOL;
} return $description;
}