You are here

public function BynderTagSearchService::__construct in Bynder 8

Same name and namespace in other branches
  1. 8.3 src/Controller/BynderTagSearchService.php \Drupal\bynder\Controller\BynderTagSearchService::__construct()
  2. 8.2 src/Controller/BynderTagSearchService.php \Drupal\bynder\Controller\BynderTagSearchService::__construct()
  3. 4.0.x src/Controller/BynderTagSearchService.php \Drupal\bynder\Controller\BynderTagSearchService::__construct()

Constructs a BynderTagSearchService class instance.

Parameters

\Drupal\bynder\BynderApiInterface $bynder: The Bynder API service.

\Drupal\Core\Logger\LoggerChannelFactoryInterface $logger: The logger factory service.

File

src/Controller/BynderTagSearchService.php, line 42

Class

BynderTagSearchService

Namespace

Drupal\bynder\Controller

Code

public function __construct(BynderApiInterface $bynder, LoggerChannelFactoryInterface $logger) {
  $this->bynder = $bynder;
  $this->logger = $logger;
}