You are here

public function TeamAppEdgeEntityControllerProxy::__construct in Apigee Edge 8

TeamAppEdgeEntityControllerProxy constructor.

Parameters

\Drupal\apigee_edge_teams\Entity\Controller\TeamAppControllerFactoryInterface $team_app_controller_factory: The team app controller factory service.

\Drupal\apigee_edge\Entity\Controller\AppControllerInterface $app_controller: The app controller service.

File

modules/apigee_edge_teams/src/Entity/Controller/TeamAppEdgeEntityControllerProxy.php, line 60

Class

TeamAppEdgeEntityControllerProxy
Team app specific entity controller implementation.

Namespace

Drupal\apigee_edge_teams\Entity\Controller

Code

public function __construct(TeamAppControllerFactoryInterface $team_app_controller_factory, AppControllerInterface $app_controller) {
  $this->teamAppControllerFactory = $team_app_controller_factory;
  $this->appController = $app_controller;
}