Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 386 Bytes

Type.md

File metadata and controls

21 lines (16 loc) · 386 Bytes

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