CompatService: Add method fetchHost()

Quick-fix for code accessing property `$host` directly.
It's protected, though `__get()` still permits access.
This commit is contained in:
Johannes Meyer 2020-04-07 15:43:32 +02:00
parent 823e91f70e
commit ca371fdca2

View file

@ -150,4 +150,9 @@ class CompatService extends Service
return $this->host;
}
protected function fetchHost()
{
$this->getHost();
}
}