You are here

public function Lockr::get in Lockr 7.2

Same name and namespace in other branches
  1. 7 src/Lockr/Lockr.php \Lockr\Lockr::get()

File

vendor/lockr/lockr-client/src/Lockr.php, line 78

Class

Lockr
Primary interface for Lockr API calls.

Namespace

Lockr

Code

public function get($uri) {
  $uri = $this->partner
    ->getReadUri() . $uri;
  return $this
    ->request('GET', $uri, $this->partner
    ->requestOptions());
}