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

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

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