Пример #1
0
 /**
  * {@inheritdoc}
  *
  * @deprecated Deprecated since version 2.5, to be removed in Symfony 3.0.
  */
 public function accept(ValidationVisitorInterface $visitor, $value, $group, $propertyPath, $propagatedGroup = null)
 {
     $visitor->visit($this, $value, $group, $propertyPath);
     if ($this->isCascaded()) {
         $visitor->validate($value, $propagatedGroup ?: $group, $propertyPath, $this->isCollectionCascaded(), $this->isCollectionCascadedDeeply());
     }
 }
 /**
  * {@inheritdoc}
  *
  * @deprecated since version 2.5, to be removed in 3.0.
  */
 public function accept(ValidationVisitorInterface $visitor, $value, $group, $propertyPath, $propagatedGroup = null)
 {
     @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
     $visitor->visit($this, $value, $group, $propertyPath);
     if ($this->isCascaded()) {
         $visitor->validate($value, $propagatedGroup ?: $group, $propertyPath, $this->isCollectionCascaded(), $this->isCollectionCascadedDeeply());
     }
 }