Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AutoDiscover.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public function getServiceName()
->getShortName();
} else {
throw new Exception\RuntimeException(
"No service name given. Call Autodiscover#setServiceName()."
"No service name given. Call Autodiscover::setServiceName()."
);
}
}
Expand Down Expand Up @@ -227,7 +227,7 @@ public function setUri($uri)
public function getUri()
{
if ($this->uri === null) {
throw new Exception\RuntimeException("Missing uri. You have to explicitly configure the Endpoint Uri by calling AutoDiscover#setUri().");
throw new Exception\RuntimeException("Missing uri. You have to explicitly configure the Endpoint Uri by calling AutoDiscover::setUri().");
}
if (is_string($this->uri)) {
$this->uri = Uri\UriFactory::factory($this->uri);
Expand Down

0 comments on commit 557b8a4

Please sign in to comment.