public static function EntityParameterFactory::create in JSON-RPC 8
Same name and namespace in other branches
- 2.x src/ParameterFactory/EntityParameterFactory.php \Drupal\jsonrpc\ParameterFactory\EntityParameterFactory::create()
Instantiates a new instance of this class.
This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.
Parameters
\Drupal\jsonrpc\ParameterDefinitionInterface $definition: The parameter definition for parameters of this type.
\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.
Overrides ParameterFactoryBase::create
File
- src/
ParameterFactory/ EntityParameterFactory.php, line 46
Class
- EntityParameterFactory
- A factory to create loaded entities from entity type & UUID user input.
Namespace
Drupal\jsonrpc\ParameterFactoryCode
public static function create(ParameterDefinitionInterface $definition, ContainerInterface $container) {
return new static($definition, $container
->get('jsonrpc.schema_validator'), $container
->get('entity.repository'));
}