public function TeamAppStorage::__construct in Apigee Edge 8
AppStorage constructor.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
\Drupal\Core\Cache\CacheBackendInterface $cache_backend: The cache backend to be used.
\Drupal\Core\Cache\MemoryCache\MemoryCacheInterface $memory_cache: The memory cache.
\Drupal\Component\Datetime\TimeInterface $system_time: The system time.
\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.
Overrides AppStorage::__construct
File
- modules/
apigee_edge_teams/ src/ Entity/ Storage/ TeamAppStorage.php, line 63
Class
- TeamAppStorage
- Entity storage class for Team app entities.
Namespace
Drupal\apigee_edge_teams\Entity\StorageCode
public function __construct(EntityTypeInterface $entity_type, CacheBackendInterface $cache_backend, MemoryCacheInterface $memory_cache, TimeInterface $system_time, TeamAppControllerFactoryInterface $team_app_controller_factory, AppControllerInterface $app_controller) {
parent::__construct($entity_type, $cache_backend, $memory_cache, $system_time, $app_controller);
$this->teamAppControllerFactory = $team_app_controller_factory;
}