Пример #1
0
 /**
  * @param EmailTemplate $template
  *
  * @return ErrorTrace
  */
 public function validate(EmailTemplate $template)
 {
     $this->errorTrace = new ErrorTrace();
     $children = $template->getChildren();
     $this->check($children);
     return $this->errorTrace;
 }