You are here

public function RequestHandler::__construct in Drupal 8

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

Creates a new RequestHandler instance.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Symfony\Component\Serializer\SerializerInterface|\Symfony\Component\Serializer\Encoder\DecoderInterface $serializer: The serializer.

File

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

Class

RequestHandler
Acts as intermediate request forwarder for resource plugins.

Namespace

Drupal\rest

Code

public function __construct(ConfigFactoryInterface $config_factory, SerializerInterface $serializer) {
  $this->configFactory = $config_factory;
  $this->serializer = $serializer;
}