You are here

SettingsInterface.php in Lockr 7.3

Namespace

Lockr

File

vendor/lockr/lockr/src/SettingsInterface.php
View source
<?php

namespace Lockr;

interface SettingsInterface {

  /**
   * Gets the Lockr host to connect to.
   *
   * @return string
   */
  public function getHostname();

  /**
   * Gets the Guzzle client options to apply.
   *
   * @return array
   */
  public function getOptions();

}

// ex: ts=4 sts=4 sw=4 et:

Interfaces

Namesort descending Description
SettingsInterface