You are here

public function MeetingController::__construct in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/Controller/MeetingController.php \Drupal\opigno_moxtra\Controller\MeetingController::__construct()

Creates new MeetingController instance.

Parameters

\Drupal\opigno_moxtra\MoxtraConnector $opigno_service: Opigno API service.

\Drupal\opigno_moxtra\MoxtraServiceInterface $moxtra_service: Moxtra API service.

File

src/Controller/MeetingController.php, line 42

Class

MeetingController
Class MeetingController.

Namespace

Drupal\opigno_moxtra\Controller

Code

public function __construct(MoxtraConnector $moxtra_connector, MoxtraServiceInterface $moxtra_service) {
  $this->moxtraConnector = $moxtra_connector;
  $this->moxtraService = $moxtra_service;
}