function IntegrityViolationList::addAll
File
- 
              src/Engine/ IntegrityViolationList.php, line 23 
Class
- IntegrityViolationList
- Collection of integrity violations.
Namespace
Drupal\rules\EngineCode
public function addAll(IntegrityViolationList $other_list) {
  foreach ($other_list as $violation) {
    $this[] = $violation;
  }
}