You are here

public function SchemaOverviewController::__construct in GraphQL 8.3

SchemaOverviewController constructor.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler: The module handler srevice.

\Drupal\graphql\Plugin\SchemaPluginManager $schemaManager: The schema plugin manager service.

File

src/Controller/SchemaOverviewController.php, line 47

Class

SchemaOverviewController

Namespace

Drupal\graphql\Controller

Code

public function __construct(ModuleHandlerInterface $moduleHandler, SchemaPluginManager $schemaManager) {
  $this->schemaManager = $schemaManager;
  $this->moduleHandler = $moduleHandler;
}