You are here

public function Regex::getRequiredOptions in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Constraints/Regex.php \Symfony\Component\Validator\Constraints\Regex::getRequiredOptions()

Returns the name of the required options.

Override this method if you want to define required options.

Return value

array

Overrides Constraint::getRequiredOptions

See also

__construct()

File

vendor/symfony/validator/Constraints/Regex.php, line 40

Class

Regex
@Target({"PROPERTY", "METHOD", "ANNOTATION"})

Namespace

Symfony\Component\Validator\Constraints

Code

public function getRequiredOptions() {
  return array(
    'pattern',
  );
}