YoastSEO_Vendor\GuzzleHttp\Psr7
Uri::getAuthority() public Yoast 1.0
{} Это метод класса: Uri{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Uri = new Uri(); $Uri->getAuthority();
Код Uri::getAuthority() Uri::getAuthority Yoast 15.6.2
public function getAuthority()
{
$authority = $this->host;
if ($this->userInfo !== '') {
$authority = $this->userInfo . '@' . $authority;
}
if ($this->port !== null) {
$authority .= ':' . $this->port;
}
return $authority;
}