Update "See also" section in the rules's documentation

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
Henrique Moody 2018-12-11 13:19:52 +01:00
parent dbf5dc33d0
commit a009286ba6
No known key found for this signature in database
GPG key ID: 221E9281655813A6
96 changed files with 198 additions and 38 deletions

View file

@ -44,3 +44,4 @@ See also:
* [Date](Date.md)
* [Max](Max.md)
* [Min](Min.md)
* [MinimumAge](MinimumAge.md)

View file

@ -25,6 +25,6 @@ v::allOf(
***
See also:
* [OneOf](OneOf.md)
* [NoneOf](NoneOf.md)
* [OneOf](OneOf.md)
* [When](When.md)

View file

@ -39,6 +39,12 @@ the string of extra chars passed as the parameter.
See also:
* [Alpha](Alpha.md)
* [Digit](Digit.md)
* [Charset](Charset.md)
* [Cntrl](Cntrl.md)
* [Consonant](Consonant.md)
* [Digit](Digit.md)
* [NoWhitespace](NoWhitespace.md)
* [Regex](Regex.md)
* [StringType](StringType.md)
* [Vowel](Vowel.md)
* [Xdigit](Xdigit.md)

View file

@ -9,6 +9,9 @@ This is similar to `v::alnum()`, but it doesn't allow numbers.
See also:
* [Alnum](Alnum.md)
* [Digit](Digit.md)
* [Charset](Charset.md)
* [Consonant](Consonant.md)
* [Digit](Digit.md)
* [NoWhitespace](NoWhitespace.md)
* [Regex](Regex.md)
* [Vowel](Vowel.md)

View file

@ -12,3 +12,4 @@ v::alwaysInvalid()->validate($whatever); // false
See also:
* [AlwaysValid](AlwaysValid.md)
* [When](When.md)

View file

@ -20,3 +20,4 @@ See also:
* [Key](Key.md)
* [KeySet](KeySet.md)
* [KeyValue](KeyValue.md)
* [Type](Type.md)

View file

@ -31,3 +31,5 @@ The name of this validator is automatically set to the attribute name.
See also:
* [Key](Key.md)
* [KeyNested](KeyNested.md)
* [ObjectType](ObjectType.md)

View file

@ -18,3 +18,5 @@ See also:
* [BankAccount](BankAccount.md)
* [Bic](Bic.md)
* [CreditCard](CreditCard.md)
* [IdentityCard](IdentityCard.md)

View file

@ -18,3 +18,4 @@ See also:
* [Bank](Bank.md)
* [Bic](Bic.md)
* [CreditCard](CreditCard.md)

View file

@ -39,6 +39,8 @@ Message template for this validator includes `{{minValue}}` and `{{maxValue}}`.
***
See also:
* [Age](Age.md)
* [Date](Date.md)
* [Length](Length.md)
* [Min](Min.md)
* [Max](Max.md)
* [Min](Min.md)

View file

@ -18,3 +18,4 @@ See also:
* [Bank](Bank.md)
* [BankAccount](BankAccount.md)
* [CreditCard](CreditCard.md)

View file

@ -13,6 +13,7 @@ v::boolType()->validate(false); // true
See also:
* [ArrayType](ArrayType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [FloatType](FloatType.md)
* [FloatVal](FloatVal.md)

View file

@ -14,3 +14,4 @@ See also:
* [Cnh](Cnh.md)
* [Cnpj](Cnpj.md)
* [Cpf](Cpf.md)
* [Imei](Imei.md)

View file

@ -15,6 +15,7 @@ See also:
* [ArrayType](ArrayType.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [Callback](Callback.md)
* [FloatType](FloatType.md)
* [IntType](IntType.md)

View file

@ -17,3 +17,4 @@ See also:
* [Alnum](Alnum.md)
* [Alpha](Alpha.md)
* [PhpLabel](PhpLabel.md)

View file

@ -11,5 +11,8 @@ v::cnh()->validate('02650306461'); // true
***
See also:
* [Bsn](Bsn.md)
* [Cnpj](Cnpj.md)
* [Cpf](Cpf.md)
* [Imei](Imei.md)
* [NfeAccessKey](NfeAccessKey.md)

View file

@ -8,5 +8,8 @@ use `->digit()` if needed.
***
See also:
* [Cpf](Cpf.md)
* [Bsn](Bsn.md)
* [Cnh](Cnh.md)
* [Cpf](Cpf.md)
* [Imei](Imei.md)
* [NfeAccessKey](NfeAccessKey.md)

View file

@ -14,4 +14,5 @@ See also:
* [Alnum](Alnum.md)
* [Prnt](Prnt.md)
* [Punct](Punct.md)
* [Space](Space.md)

View file

@ -13,6 +13,6 @@ v::consonant()->validate('xkcd'); // true
See also:
* [Alnum](Alnum.md)
* [Digit](Digit.md)
* [Alpha](Alpha.md)
* [Digit](Digit.md)
* [Vowel](Vowel.md)

View file

@ -23,6 +23,9 @@ Message template for this validator includes `{{containsValue}}`.
***
See also:
* [StartsWith](StartsWith.md)
* [EndsWith](EndsWith.md)
* [Equals](Equals.md)
* [Identical](Identical.md)
* [In](In.md)
* [Regex](Regex.md)
* [StartsWith](StartsWith.md)

View file

@ -14,6 +14,7 @@ v::countable()->validate('string'); // false
***
See also:
* [ArrayType](ArrayType.md)
* [ArrayVal](ArrayVal.md)
* [Instance](Instance.md)
* [IterableType](IterableType.md)

View file

@ -11,4 +11,8 @@ v::countryCode()->validate('BR'); // true
***
See also:
* [CurrencyCode](CurrencyCode.md)
* [LanguageCode](LanguageCode.md)
* [PostalCode](PostalCode.md)
* [SubdivisionCode](SubdivisionCode.md)
* [Tld](Tld.md)

View file

@ -24,5 +24,8 @@ v::digit()->cpf()->validate('44455566820'); // true
***
See also:
* [Cnpj](Cnpj.md)
* [Bsn](Bsn.md)
* [Cnh](Cnh.md)
* [Cnpj](Cnpj.md)
* [Imei](Imei.md)
* [NfeAccessKey](NfeAccessKey.md)

View file

@ -34,7 +34,8 @@ Message template for this validator includes `{{format}}`.
***
See also:
* [Age](Age.md)
* [Between](Between.md)
* [MinimumAge](MinimumAge.md)
* [LeapDate](LeapDate.md)
* [LeapYear](LeapYear.md)
* [MinimumAge](MinimumAge.md)

View file

@ -9,5 +9,13 @@ See also:
* [Alnum](Alnum.md)
* [Alpha](Alpha.md)
* [Vowel](Vowel.md)
* [Consonant](Consonant.md)
* [Factor](Factor.md)
* [Finite](Finite.md)
* [Infinite](Infinite.md)
* [IntType](IntType.md)
* [IntVal](IntVal.md)
* [Numeric](Numeric.md)
* [Regex](Regex.md)
* [Vowel](Vowel.md)
* [Xdigit](Xdigit.md)

View file

@ -22,6 +22,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -33,8 +33,10 @@ Messages for this validator will reflect rules above.
See also:
* [Ip](Ip.md)
* [Json](Json.md)
* [MacAddress](MacAddress.md)
* [Tld](Tld.md)
* [Url](Url.md)
[PunnyCode]: http://en.wikipedia.org/wiki/Punycode "Wikipedia: Punnycode"
[IDNA]: http://en.wikipedia.org/wiki/Internationalized_domain_name#Internationalizing_Domain_Names_in_Applications "Wikipedia: Internationalized domain name"

View file

@ -23,5 +23,5 @@ Using `arrayVal()` before `each()` is a best practice.
***
See also:
* [Key](Key.md)
* [ArrayVal](ArrayVal.md)
* [Key](Key.md)

View file

@ -11,6 +11,7 @@ v::email()->validate('alexandre@gaigalas.net'); // true
***
See also:
* [Json](Json.md)
* [Phone](Phone.md)
* [Url](Url.md)
* [VideoUrl](VideoUrl.md)

View file

@ -26,6 +26,7 @@ Message template for this validator includes `{{endValue}}`.
***
See also:
* [StartsWith](StartsWith.md)
* [Contains](Contains.md)
* [In](In.md)
* [Regex](Regex.md)
* [StartsWith](StartsWith.md)

View file

@ -15,3 +15,5 @@ See also:
* [Contains](Contains.md)
* [Identical](Identical.md)
* [KeyValue](KeyValue.md)
* [Version](Version.md)

View file

@ -13,5 +13,5 @@ Using `int()` before `even()` is a best practice.
***
See also:
* [Odd](Odd.md)
* [Multiple](Multiple.md)
* [Odd](Odd.md)

View file

@ -15,6 +15,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -22,6 +22,7 @@ See also:
* [Executable](Executable.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -17,6 +17,7 @@ See also:
* [Executable](Executable.md)
* [Exists](Exists.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -17,3 +17,5 @@ See also:
* [Finite](Finite.md)
* [Infinite](Infinite.md)
* [Numeric](Numeric.md)
* [PerfectSquare](PerfectSquare.md)
* [PrimeNumber](PrimeNumber.md)

View file

@ -13,5 +13,5 @@ v::fibonacci()->validate(6); // false
***
See also:
* [PerfectSquare](PerfectSquare.md)
* [PrimeNumber](PrimeNumber.md)
* [PerfectSquare](PerfectSquare.md)

View file

@ -22,6 +22,7 @@ See also:
* [Executable](Executable.md)
* [Exists](Exists.md)
* [Extension](Extension.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -16,3 +16,5 @@ v::filterVar(FILTER_VALIDATE_URL, FILTER_FLAG_PATH_REQUIRED)->validate('http://e
See also:
* [Callback](Callback.md)
* [Json](Json.md)
* [Url](Url.md)

View file

@ -13,6 +13,9 @@ v::finite()->validate(10); // true
See also:
* [Digit](Digit.md)
* [Factor](Factor.md)
* [Infinite](Infinite.md)
* [IntType](IntType.md)
* [IntVal](IntVal.md)
* [Numeric](Numeric.md)
* [Type](Type.md)

View file

@ -13,7 +13,9 @@ v::floatType()->validate(0e5); // true
***
See also:
* [ArrayType](ArrayType.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [FloatVal](FloatVal.md)
* [IntType](IntType.md)

View file

@ -12,6 +12,9 @@ v::floatVal()->validate('1e5'); // true
***
See also:
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [FloatType](FloatType.md)
* [IntType](IntType.md)
* [IntVal](IntVal.md)
* [Type](Type.md)

View file

@ -13,3 +13,4 @@ v::graph()->validate('LKM@#$%4;'); // true
See also:
* [Prnt](Prnt.md)
* [Punct](Punct.md)

View file

@ -9,8 +9,6 @@ v::hexRgbColor()->validate('#FFFAAA'); // true
v::hexRgbColor()->validate('123123'); // true
v::hexRgbColor()->validate('FCD'); // true
```
***
See also:
* [Vxdigit](Vxdigit.md)
* [Xdigit](Xdigit.md)

View file

@ -25,6 +25,7 @@ Message template for this validator includes `{{haystack}}`.
***
See also:
* [StartsWith](StartsWith.md)
* [EndsWith](EndsWith.md)
* [Contains](Contains.md)
* [EndsWith](EndsWith.md)
* [Roman](Roman.md)
* [StartsWith](StartsWith.md)

View file

@ -12,6 +12,9 @@ v::infinite()->validate(INF); // true
See also:
* [Digit](Digit.md)
* [Factor](Factor.md)
* [Finite](Finite.md)
* [IntType](IntType.md)
* [IntVal](IntVal.md)
* [Numeric](Numeric.md)
* [Type](Type.md)

View file

@ -14,4 +14,7 @@ Message template for this validator includes `{{instanceName}}`.
***
See also:
* [Countable](Countable.md)
* [IterableType](IterableType.md)
* [ObjectType](ObjectType.md)
* [Type](Type.md)

View file

@ -12,11 +12,14 @@ v::intType()->validate('10'); // false
***
See also:
* [ArrayType](ArrayType.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [Digit](Digit.md)
* [Finite](Finite.md)
* [FloatType](FloatType.md)
* [FloatVal](FloatVal.md)
* [Infinite](Infinite.md)
* [IntVal](IntVal.md)
* [NullType](NullType.md)

View file

@ -14,5 +14,9 @@ See also:
* [Digit](Digit.md)
* [Finite](Finite.md)
* [FloatType](FloatType.md)
* [FloatVal](FloatVal.md)
* [Infinite](Infinite.md)
* [IntType](IntType.md)
* [Numeric](Numeric.md)
* [Type](Type.md)

View file

@ -3,3 +3,6 @@
- `v::iterable()`
**Deprecated**: Use [IterableType](IterableType.md) instead.
See also:
* [IterableType](IterableType.md)

View file

@ -15,6 +15,8 @@ v::iterableType()->validate('string'); // false
***
See also:
* [ArrayType](ArrayType.md)
* [ArrayVal](ArrayVal.md)
* [Countable](Countable.md)
* [Instance](Instance.md)
* [Iterable](Iterable.md)

View file

@ -31,4 +31,9 @@ The name of this validator is automatically set to the key name.
***
See also:
* [ArrayVal](ArrayVal.md)
* [Attribute](Attribute.md)
* [Each](Each.md)
* [KeyNested](KeyNested.md)
* [KeySet](KeySet.md)
* [KeyValue](KeyValue.md)

View file

@ -35,6 +35,6 @@ See also:
* [Attribute](Attribute.md)
* [Key](Key.md)
* [KeyValue](KeyValue.md)
[Yii2 ArrayHelper]: https://github.com/yiisoft/yii2/blob/68c30c1/framework/helpers/BaseArrayHelper.php "Yii2 ArrayHelper"

View file

@ -48,4 +48,6 @@ The keys' order is not considered in the validation.
***
See also:
* [ArrayVal](ArrayVal.md)
* [Key](Key.md)
* [KeyValue](KeyValue.md)

View file

@ -56,7 +56,9 @@ password_confirmation must be equals "password"
***
See also:
* [ArrayVal](ArrayVal.md)
* [Equals](Equals.md)
* [Key](Key.md)
* [KeyNested](KeyNested.md)
* [KeySet](KeySet.md)
* [SubdivisionCode](SubdivisionCode.md)

View file

@ -17,4 +17,4 @@ You can choose between alpha-2 and alpha-3, alpha-2 is set by default.
***
See also:
* [CountryCode](CountryCode.md)
* [CountryCode](CountryCode.md)

View file

@ -32,5 +32,6 @@ Message template for this validator includes `{{maxValue}}`.
***
See also:
* [Min](Min.md)
* [Age](Age.md)
* [Between](Between.md)
* [Min](Min.md)

View file

@ -18,6 +18,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Readable](Readable.md)
* [Size](Size.md)
* [SymbolicLink](SymbolicLink.md)

View file

@ -25,5 +25,6 @@ Message template for this validator includes `{{minValue}}`.
***
See also:
* [Max](Max.md)
* [Age](Age.md)
* [Between](Between.md)
* [Max](Max.md)

View file

@ -11,4 +11,6 @@ v::intVal()->multiple(3)->validate(9); // true
***
See also:
* [Even](Even.md)
* [Odd](Odd.md)
* [PrimeNumber](PrimeNumber.md)

View file

@ -21,4 +21,6 @@ If `$locale` is TRUE, uses the value of [nl_langinfo()](http://php.net/nl_langin
***
See also:
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [Yes](Yes.md)

View file

@ -19,3 +19,4 @@ See also:
* [NotBlank](NotBlank.md)
* [NotEmpty](NotEmpty.md)
* [NotOptional](NotOptional.md)
* [Optional](Optional.md)

View file

@ -16,6 +16,7 @@ In the sample above, 'foo' isn't a integer nor a float, so noneOf returns true.
***
See also:
* [Not](Not.md)
* [AllOf](AllOf.md)
* [Not](Not.md)
* [OneOf](OneOf.md)
* [When](When.md)

View file

@ -31,4 +31,6 @@ See also:
* [NoWhitespace](NoWhitespace.md)
* [NotEmpty](NotEmpty.md)
* [NotOptional](NotOptional.md)
* [NullType](NullType.md)
* [Optional](Optional.md)

View file

@ -39,4 +39,7 @@ v::stringType()->notEmpty()->validate("\t \n \r"); //false
See also:
* [NoWhitespace](NoWhitespace.md)
* [NotBlank](NotBlank.md)
* [NotOptional](NotOptional.md)
* [NullType](NullType.md)
* [Optional](Optional.md)

View file

@ -11,15 +11,17 @@ v::nullType()->validate(null); // true
***
See also:
* [ArrayType](ArrayType.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [FloatType](FloatType.md)
* [IntType](IntType.md)
* [NotBlank](NotBlank.md)
* [NotEmpty](NotEmpty.md)
* [NotOptional](NotOptional.md)
* [NullType](NullType.md)
* [ObjectType](ObjectType.md)
* [Optional](Optional.md)
* [ResourceType](ResourceType.md)
* [StringType](StringType.md)
* [Type](Type.md)

View file

@ -13,6 +13,8 @@ v::numeric()->validate('135.0'); // true
See also:
* [Digit](Digit.md)
* [Factor](Factor.md)
* [Finite](Finite.md)
* [Infinite](Infinite.md)
* [IntType](IntType.md)
* [IntVal](IntVal.md)

View file

@ -11,14 +11,15 @@ v::objectType()->validate(new stdClass); // true
***
See also:
* [ArrayType](ArrayType.md)
* [Attribute](Attribute.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [FloatType](FloatType.md)
* [Instance](Instance.md)
* [IntType](IntType.md)
* [NullType](NullType.md)
* [ObjectType](ObjectType.md)
* [ResourceType](ResourceType.md)
* [StringType](StringType.md)
* [Type](Type.md)

View file

@ -13,4 +13,5 @@ v::perfectSquare()->validate(9); // true (3*3)
See also:
* [Factor](Factor.md)
* [Fibonacci](Fibonacci.md)
* [PrimeNumber](PrimeNumber.md)

View file

@ -10,3 +10,6 @@ v::pesel()->validate('97072704800'); // true
v::pesel()->validate('97072704801'); // false
v::pesel()->validate('PESEL123456'); // false
```
See also:
* [IdentityCard](IdentityCard.md)

View file

@ -18,5 +18,6 @@ space or dashed notations) such as:
See also:
* [Email](Email.md)
* [Json](Json.md)
* [Url](Url.md)
* [VideoUrl](VideoUrl.md)

View file

@ -17,8 +17,7 @@ v::phpLabel()->validate('4ccess'); //false
***
See also:
* [Charset](Charset.md)
* [Regex](Regex.md)
* [ResourceType](ResourceType.md)
* [Slug](Slug.md)
* [Charset](Charset.md)

View file

@ -12,5 +12,6 @@ v::primeNumber()->validate(7); // true
See also:
* [Factor](Factor.md)
* [Fibonacci](Fibonacci.md)
* [Multiple](Multiple.md)
* [PerfectSquare](PerfectSquare.md)
* [PrimeNumber](PrimeNumber.md)

View file

@ -12,4 +12,6 @@ v::prnt()->validate('LMKA0$% _123'); // true
***
See also:
* [Cntrl](Cntrl.md)
* [Graph](Graph.md)
* [Punct](Punct.md)

View file

@ -16,6 +16,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Size](Size.md)
* [SymbolicLink](SymbolicLink.md)

View file

@ -18,4 +18,7 @@ See also:
* [Contains](Contains.md)
* [Digit](Digit.md)
* [EndsWith](EndsWith.md)
* [PhpLabel](PhpLabel.md)
* [Roman](Roman.md)
* [StartsWith](StartsWith.md)
* [Version](Version.md)

View file

@ -11,11 +11,14 @@ v::resourceType()->validate(fopen('/path/to/file.txt', 'w')); // true
***
See also:
* [ArrayType](ArrayType.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [FloatType](FloatType.md)
* [IntType](IntType.md)
* [NullType](NullType.md)
* [ObjectType](ObjectType.md)
* [PhpLabel](PhpLabel.md)
* [StringType](StringType.md)
* [Type](Type.md)

View file

@ -14,3 +14,4 @@ See also:
* [In](In.md)
* [Regex](Regex.md)
* [Uppercase](Uppercase.md)
* [Version](Version.md)

View file

@ -41,6 +41,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [SymbolicLink](SymbolicLink.md)

View file

@ -13,5 +13,6 @@ v::slug()->validate('my-wordpress-title-'); // false
***
See also:
* [PhpLabel](PhpLabel.md)
* [Url](Url.md)
* [VideoUrl](VideoUrl.md)

View file

@ -26,6 +26,7 @@ Message template for this validator includes `{{startValue}}`.
***
See also:
* [EndsWith](EndsWith.md)
* [Contains](Contains.md)
* [EndsWith](EndsWith.md)
* [In](In.md)
* [Regex](Regex.md)

View file

@ -12,7 +12,9 @@ v::stringType()->validate('hi'); // true
See also:
* [Alnum](Alnum.md)
* [ArrayType](ArrayType.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [FloatType](FloatType.md)
* [IntType](IntType.md)

View file

@ -275,9 +275,11 @@ All data was extrated from [GeoNames][] which is licensed under a
See also:
* [CountryCode](CountryCode.md)
* [CurrencyCode](CurrencyCode.md)
* [IdentityCard](IdentityCard.md)
* [KeyValue](KeyValue.md)
* [Tld](Tld.md)
[Creative Commons Attribution 3.0 License]: http://creativecommons.org/licenses/by/3.0 "Creative Commons Attribution 3.0 License"
[GeoNames]: http://www.geonames.org "GetNames"
[ISO 3166-1 alpha-2]: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 "ISO 3166-1 alpha-2"

View file

@ -16,6 +16,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -13,5 +13,8 @@ v::tld()->validate('org'); // true
***
See also:
* [Domain](Domain.md)
* [CountryCode](CountryCode.md)
* [CountryCode](CountryCode.md)
* [Domain](Domain.md)
* [Ip](Ip.md)
* [MacAddress](MacAddress.md)
* [SubdivisionCode](SubdivisionCode.md)

View file

@ -18,4 +18,6 @@ v::trueVal()->validate('2'); // false
***
See also:
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [FalseVal](FalseVal.md)

View file

@ -13,8 +13,10 @@ v::type('object')->validate(new stdClass()); // true
***
See also:
* [ArrayType](ArrayType.md)
* [ArrayVal](ArrayVal.md)
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [CallableType](CallableType.md)
* [Finite](Finite.md)
* [FloatType](FloatType.md)
@ -28,4 +30,3 @@ See also:
* [ResourceType](ResourceType.md)
* [ScalarVal](ScalarVal.md)
* [StringType](StringType.md)
* [Type](Type.md)

View file

@ -16,6 +16,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -12,3 +12,4 @@ v::stringType()->uppercase()->validate('W3C'); // true
See also:
* [Lowercase](Lowercase.md)
* [Roman](Roman.md)

View file

@ -21,4 +21,5 @@ See also:
* [Email](Email.md)
* [FilterVar](FilterVar.md)
* [Phone](Phone.md)
* [Slug](Slug.md)
* [VideoUrl](VideoUrl.md)

View file

@ -32,4 +32,8 @@ Message template for this validator includes `{{service}}`.
***
See also:
* [Email](Email.md)
* [Json](Json.md)
* [Phone](Phone.md)
* [Slug](Slug.md)
* [Url](Url.md)

View file

@ -12,6 +12,6 @@ v::vowel()->validate('aei'); // true
See also:
* [Alnum](Alnum.md)
* [Digit](Digit.md)
* [Alpha](Alpha.md)
* [Consonant](Consonant.md)
* [Digit](Digit.md)

View file

@ -20,5 +20,6 @@ When `$else` is not defined use [AlwaysInvalid](AlwaysInvalid.md)
See also:
* [AllOf](AllOf.md)
* [OneOf](OneOf.md)
* [AlwaysInvalid](AlwaysInvalid.md)
* [NoneOf](NoneOf.md)
* [OneOf](OneOf.md)

View file

@ -16,6 +16,7 @@ See also:
* [Exists](Exists.md)
* [Extension](Extension.md)
* [File](File.md)
* [Image](Image.md)
* [Mimetype](Mimetype.md)
* [Readable](Readable.md)
* [Size](Size.md)

View file

@ -17,6 +17,6 @@ v::xdigit()->validate('0x1f'); // false
***
See also:
* [Digit](Digit.md)
* [Alnum](Alnum.md)
* [Digit](Digit.md)
* [HexRgbColor](HexRgbColor.md)

View file

@ -20,4 +20,6 @@ If `$locale` is TRUE, uses the value of [nl_langinfo()](http://php.net/nl_langin
***
See also:
* [BoolType](BoolType.md)
* [BoolVal](BoolVal.md)
* [No](No.md)