public function MeetingController::__construct in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x 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\ControllerCode
public function __construct(MoxtraConnector $moxtra_connector, MoxtraServiceInterface $moxtra_service) {
$this->moxtraConnector = $moxtra_connector;
$this->moxtraService = $moxtra_service;
}