awareness-1.0.0-alpha5/src/Http/HttpClientAwareTrait.php
src/Http/HttpClientAwareTrait.php
<?php
namespace Drupal\awareness\Http;
/**
* Trait for classes that utilize the http_client service.
*/
trait HttpClientAwareTrait {
/**
* Get the HTTP client.
*
* @return \GuzzleHttp\Client
* The HTTP client.
*/
protected function getHttpClient() {
return \Drupal::httpClient();
}
}
