You are here

interface HttpClientManagerFactoryInterface in HTTP Client Manager 8

Same name and namespace in other branches
  1. 8.2 src/HttpClientManagerFactoryInterface.php \Drupal\http_client_manager\HttpClientManagerFactoryInterface

Interface HttpClientManagerFactoryInterface.

@package Drupal\http_client_manager

Hierarchy

Expanded class hierarchy of HttpClientManagerFactoryInterface

All classes that implement HttpClientManagerFactoryInterface

2 files declare their use of HttpClientManagerFactoryInterface
HttpConfigRequestForm.php in src/Form/HttpConfigRequestForm.php
HttpServiceApiPreviewForm.php in src/Form/HttpServiceApiPreviewForm.php

File

src/HttpClientManagerFactoryInterface.php, line 10

Namespace

Drupal\http_client_manager
View source
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);

}

Members

Namesort descending Modifiers Type Description Overrides
HttpClientManagerFactoryInterface::get public function Retrieves the registered http client for the requested service api. 1