respect-validation/docs/rules/NotEmpty.md
Henrique Moody 4fd26e39bb
Rename "NotOptional" to "NotUndef"
Since I've already renamed the "Optional" rule to "UnderOf," it makes
sense to rename this rule too.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-05-06 20:45:27 +02:00

997 B

NotEmpty

  • NotEmpty()

Validates wether the given input is not empty. This function also takes whitespace into account, use noWhitespace() if no spaces or linebreaks and other whitespace anywhere in the input is desired.

v::stringType()->notEmpty()->validate(''); // false

Null values are empty:

v::notEmpty()->validate(null); // false

Numbers:

v::intVal()->notEmpty()->validate(0); // false

Empty arrays:

v::arrayVal()->notEmpty()->validate([]); // false

Whitespace:

v::stringType()->notEmpty()->validate('        ');  //false
v::stringType()->notEmpty()->validate("\t \n \r");  //false

Categorization

  • Miscellaneous

Changelog

Version Description
0.3.9 Created

See also: