You are here

public function ComputedItemListTrait::offsetExists in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/TypedData/ComputedItemListTrait.php \Drupal\Core\TypedData\ComputedItemListTrait::offsetExists()

File

core/lib/Drupal/Core/TypedData/ComputedItemListTrait.php, line 121

Class

ComputedItemListTrait
Provides common functionality for computed item lists.

Namespace

Drupal\Core\TypedData

Code

public function offsetExists($offset) {
  $this
    ->ensureComputedValue();
  return parent::offsetExists($offset);
}