You are here

public static function RequestHandler::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/rest/src/RequestHandler.php \Drupal\rest\RequestHandler::create()
  2. 9 core/modules/rest/src/RequestHandler.php \Drupal\rest\RequestHandler::create()

File

core/modules/rest/src/RequestHandler.php, line 46

Class

RequestHandler
Acts as intermediate request forwarder for resource plugins.

Namespace

Drupal\rest

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('serializer'));
}