You are here

public static function JsonApiGenerator::create in OpenAPI for JSON:API 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/openapi/OpenApiGenerator/JsonApiGenerator.php \Drupal\openapi_jsonapi\Plugin\openapi\OpenApiGenerator\JsonApiGenerator::create()

File

src/Plugin/openapi/OpenApiGenerator/JsonApiGenerator.php, line 139

Class

JsonApiGenerator
Defines an OpenApi Schema Generator for the JsonApi module.

Namespace

Drupal\openapi_jsonapi\Plugin\openapi\OpenApiGenerator

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('entity_type.manager'), $container
    ->get('router.route_provider'), $container
    ->get('entity_field.manager'), $container
    ->get('serializer'), $container
    ->get('request_stack'), $container
    ->get('config.factory'), $container
    ->get('authentication_collector'), $container
    ->get('schemata.schema_factory'), $container
    ->get('module_handler'), $container
    ->get('paramconverter_manager'), $container
    ->get('jsonapi.resource_type.repository'), $container
    ->get('entity_type.bundle.info'));
}