You are here

public function DeveloperSyncController::__construct in Apigee Edge 8

DeveloperSyncController constructor.

Parameters

\Drupal\apigee_edge\JobExecutorInterface $executor: The job executor service.

\Drupal\Core\Messenger\MessengerInterface $messenger: The messenger service.

File

src/Controller/DeveloperSyncController.php, line 58

Class

DeveloperSyncController
Controller for the developer synchronization-related pages.

Namespace

Drupal\apigee_edge\Controller

Code

public function __construct(JobExecutorInterface $executor, MessengerInterface $messenger) {
  $this->executor = $executor;
  $this->messenger = $messenger;
}