HttpClientManagerFactoryInterface.php in HTTP Client Manager 8
Same filename and directory in other branches
Namespace
Drupal\http_client_managerFile
src/HttpClientManagerFactoryInterface.phpView 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
Name | Description |
---|---|
HttpClientManagerFactoryInterface | Interface HttpClientManagerFactoryInterface. |