You are here

public function FieldReferenceInterface::getEntitiesToDiff in Diff 8

Builds an array of entities.

This method is responsible for transforming a FieldItemListInterface object into an array of entities. The resulted array of entities is then used when parsing the entity to get a clean array of fields that will be compared.

Parameters

\Drupal\Core\Field\FieldItemListInterface $field_items: Represents an entity field.

Return value

\Drupal\Core\Entity\EntityInterface[] An array of entities to be compared. If an empty array is returned it means that a field is either empty or no properties need to be compared for that field.

File

src/FieldReferenceInterface.php, line 29

Class

FieldReferenceInterface
Provides referenced entities to recurse in diff.

Namespace

Drupal\diff

Code

public function getEntitiesToDiff(FieldItemListInterface $field_items);