interface DeveloperAppControllerFactoryInterface in Apigee Edge 8
Base definition of the developer app controller factory service.
Hierarchy
- interface \Drupal\apigee_edge\Entity\Controller\DeveloperAppControllerFactoryInterface
Expanded class hierarchy of DeveloperAppControllerFactoryInterface
All classes that implement DeveloperAppControllerFactoryInterface
1 file declares its use of DeveloperAppControllerFactoryInterface
- DeveloperAppStorage.php in src/
Entity/ Storage/ DeveloperAppStorage.php
File
- src/
Entity/ Controller/ DeveloperAppControllerFactoryInterface.php, line 26
Namespace
Drupal\apigee_edge\Entity\ControllerView source
interface DeveloperAppControllerFactoryInterface {
/**
* Returns a preconfigured developer app controller.
*
* @param string $developer
* Email address or id (UUID) of a developer.
*
* @return \Drupal\apigee_edge\Entity\Controller\DeveloperAppControllerInterface
* Developer app controller.
*/
public function developerAppController(string $developer) : DeveloperAppControllerInterface;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DeveloperAppControllerFactoryInterface:: |
public | function | Returns a preconfigured developer app controller. | 1 |