You are here

public function Groups::__construct in Flickr API Integration 8

Groups constructor.

Parameters

\Drupal\flickr_api\Service\Client $client: Client.

\Drupal\flickr_api\Service\Helpers $helpers: Helpers.

File

src/Service/Groups.php, line 27

Class

Groups
Class Groups.

Namespace

Drupal\flickr_api\Service

Code

public function __construct(Client $client, Helpers $helpers) {

  // Flickr API Client.
  $this->client = $client;

  // Flickr API Helpers.
  $this->helpers = $helpers;
}