mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 07:45:45 +01:00
559 B
559 B
Type
v::type(string $type)
Validates the type of input.
v::type('bool')->validate(true); //true
v::type('callable')->validate(function (){}); //true
v::type('object')->validate(new stdClass()); //true
See also: