You are here

public function IntegrityViolationList::addAll in Rules 8.3

File

src/Engine/IntegrityViolationList.php, line 23

Class

IntegrityViolationList
Collection of integrity violations.

Namespace

Drupal\rules\Engine

Code

public function addAll(IntegrityViolationList $other_list) {
  foreach ($other_list as $violation) {
    $this[] = $violation;
  }
}