public function DeveloperAppEdgeEntityControllerProxy::__construct in Apigee Edge 8
DeveloperAppEntityControllerProxy constructor.
Parameters
\Drupal\apigee_edge\Entity\Controller\DeveloperAppControllerFactoryInterface $developer_app_controller_factory: The developer app controller factory service.
\Drupal\apigee_edge\Entity\Controller\AppControllerInterface $app_controller: The app controller service.
File
- src/
Entity/ Controller/ DeveloperAppEdgeEntityControllerProxy.php, line 58
Class
- DeveloperAppEdgeEntityControllerProxy
- Developer app specific entity controller implementation.
Namespace
Drupal\apigee_edge\Entity\ControllerCode
public function __construct(DeveloperAppControllerFactoryInterface $developer_app_controller_factory, AppControllerInterface $app_controller) {
$this->devAppControllerFactory = $developer_app_controller_factory;
$this->appController = $app_controller;
}