Metaregistrar\TMCH\tmchClaimData::getLabel PHP Метод

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

public getLabel ( ) : string
Результат string
    public function getLabel()
    {
        $xpath = $this->xPath();
        $result = $xpath->query('/tmNotice:notice/tmNotice:label');
        if (is_object($result) && $result->length > 0) {
            return trim($result->item(0)->nodeValue);
        }
        return null;
    }