mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
568 B
568 B
CallableType
v::callableType()
Validates if the input is a callable value.
v::callableType()->validate(function () {}); // true
v::callableType()->validate('trim'); // true
v::callableType()->validate([new ObjectType, 'methodName']); // true
See also: