Class **Phalcon\\Validation\\Validator\\ExclusionIn** ===================================================== *extends* abstract class :doc:`Phalcon\\Validation\\Validator ` *implements* :doc:`Phalcon\\Validation\\ValidatorInterface ` .. role:: raw-html(raw) :format: html :raw-html:`Source on GitHub` Check if a value is not included into a list of values .. code-block:: php add( "status", new ExclusionIn( [ "message" => "The status must not be A or B", "domain" => [ "A", "B", ], ] ) ); $validator->add( [ "status", "type", ], new ExclusionIn( [ "message" => [ "status" => "The status must not be A or B", "type" => "The type must not be 1 or "' ], "domain" => [ "status" => [ "A", "B", ], "type" => [1, 2], ], ] ) ); Methods ------- public **validate** (:doc:`Phalcon\\Validation ` $validation, *mixed* $field) Executes the validation public **__construct** ([*array* $options]) inherited from :doc:`Phalcon\\Validation\\Validator ` Phalcon\\Validation\\Validator constructor public **isSetOption** (*mixed* $key) inherited from :doc:`Phalcon\\Validation\\Validator ` Checks if an option has been defined public **hasOption** (*mixed* $key) inherited from :doc:`Phalcon\\Validation\\Validator ` Checks if an option is defined public **getOption** (*mixed* $key, [*mixed* $defaultValue]) inherited from :doc:`Phalcon\\Validation\\Validator ` Returns an option in the validator's options Returns null if the option hasn't set public **setOption** (*mixed* $key, *mixed* $value) inherited from :doc:`Phalcon\\Validation\\Validator ` Sets an option in the validator