You are here

interface TeamAppControllerFactoryInterface in Apigee Edge 8

Interface TeamAppControllerFactoryInterface.

Hierarchy

Expanded class hierarchy of TeamAppControllerFactoryInterface

All classes that implement TeamAppControllerFactoryInterface

1 file declares its use of TeamAppControllerFactoryInterface
TeamAppStorage.php in modules/apigee_edge_teams/src/Entity/Storage/TeamAppStorage.php

File

modules/apigee_edge_teams/src/Entity/Controller/TeamAppControllerFactoryInterface.php, line 26

Namespace

Drupal\apigee_edge_teams\Entity\Controller
View source
interface TeamAppControllerFactoryInterface {

  /**
   * Returns a preconfigured team app controller.
   *
   * @param string $team
   *   Name of a team.
   *
   * @return \Drupal\apigee_edge_teams\Entity\Controller\TeamAppControllerInterface
   *   Team app controller.
   */
  public function teamAppController(string $team) : TeamAppControllerInterface;

}

Members

Namesort descending Modifiers Type Description Overrides
TeamAppControllerFactoryInterface::teamAppController public function Returns a preconfigured team app controller. 1