You are here

HttpClientManagerFactoryInterface.php in HTTP Client Manager 8

Same filename and directory in other branches
  1. 8.2 src/HttpClientManagerFactoryInterface.php

File

src/HttpClientManagerFactoryInterface.php
View source
<?php

namespace Drupal\http_client_manager;


/**
 * Interface HttpClientManagerFactoryInterface.
 *
 * @package Drupal\http_client_manager
 */
interface HttpClientManagerFactoryInterface {

  /**
   * Retrieves the registered http client for the requested service api.
   *
   * @param string $service_api
   *   The service api name.
   *
   * @return \Drupal\http_client_manager\HttpClientInterface
   *   The registered http client for this service api.
   */
  public function get($service_api);

}

Interfaces

Namesort descending Description
HttpClientManagerFactoryInterface Interface HttpClientManagerFactoryInterface.