Metaregistrar\EPP\ficoraEppContactPostalInfo::getPersonName PHP Метод

getPersonName() публичный Метод

Gets the name of the person
public getPersonName ( ) : string | null
Результат string | null
    public function getPersonName()
    {
        if ($this->getFirstName() && $this->getLastName()) {
            return $this->getFirstName() . ' ' . $this->getLastName();
        }
        return null;
    }