public function Constraint::__set

Unsupported operation.

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraint.php, line 140

Class

Constraint
Contains the properties of a constraint definition.

Namespace

Symfony\Component\Validator

Code

public function __set($option, $value) {
  throw new InvalidOptionsException(sprintf('The option "%s" does not exist in constraint %s', $option, get_class($this)), array(
    $option,
  ));
}