You are here

PartnerInterface.php in Lockr 7

Namespace

Lockr

File

src/Lockr/PartnerInterface.php
View source
<?php

// ex: ts=4 sts=4 sw=4 et:
namespace Lockr;


/**
 * Interface to Lockr platform specific partners.
 */
interface PartnerInterface {

  /**
   * Adds required request options to the request for partner authentication.
   */
  public function requestOptions();

  /**
   * Gets the partner base URI for reading data.
   */
  public function getReadUri();

  /**
   * Gets the partner base URI for writing data.
   */
  public function getWriteUri();

}

Interfaces

Namesort descending Description
PartnerInterface Interface to Lockr platform specific partners.