You are here

public function EntityConstraintViolationList::remove in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/EntityConstraintViolationList.php \Drupal\Core\Entity\EntityConstraintViolationList::remove()
1 call to EntityConstraintViolationList::remove()
EntityConstraintViolationList::filterByFields in core/lib/Drupal/Core/Entity/EntityConstraintViolationList.php
Filters this violation list by the given fields.

File

core/lib/Drupal/Core/Entity/EntityConstraintViolationList.php, line 200

Class

EntityConstraintViolationList
Implements an entity constraint violation list.

Namespace

Drupal\Core\Entity

Code

public function remove($offset) {
  parent::remove($offset);
  $this->violationOffsetsByField = NULL;
  $this->entityViolationOffsets = NULL;
}