예제 #1
0
파일: Context.php 프로젝트: stefk/jval
 /**
  * Merges the current violations with the violations stored in
  * another context.
  *
  * @param Context $context
  */
 public function mergeViolations(Context $context)
 {
     $this->violations = array_merge($this->violations, $context->getViolations());
 }