You are here

public function ChainEntityResolver::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/serialization/src/EntityResolver/ChainEntityResolver.php \Drupal\serialization\EntityResolver\ChainEntityResolver::__construct()

Constructs a ChainEntityResolver object.

Parameters

\Drupal\serialization\EntityResolver\EntityResolverInterface[] $resolvers: The array of concrete resolvers.

File

core/modules/serialization/src/EntityResolver/ChainEntityResolver.php, line 30
Contains \Drupal\serialization\EntityResolver\ChainEntityResolver.

Class

ChainEntityResolver
Resolver delegating the entity resolution to a chain of resolvers.

Namespace

Drupal\serialization\EntityResolver

Code

public function __construct(array $resolvers = array()) {
  $this->resolvers = $resolvers;
}