You are here

public function NullPartner::getReadUri in Lockr 7.2

Gets the partner base URI for reading data.

Overrides PartnerInterface::getReadUri

File

vendor/lockr/lockr-client/src/NullPartner.php, line 32

Class

NullPartner

Namespace

Lockr

Code

public function getReadUri() {
  if ($this->region != 'us') {
    return "https://{$this->region}.custom.api.lockr.io";
  }
  return "https://custom.api.lockr.io";
}