respect-validation/docs/Exists.md
2017-03-28 11:53:14 +02:00

646 B

Exists

  • Exists()

Validates files or directories.

v::exists()->validate(__FILE__); // true
v::exists()->validate(__DIR__); // true

This validator will consider SplFileInfo instances, so you can do something like:

v::exists()->validate(new \SplFileInfo($file));

Changelog

Version Description
0.5.0 Created

See also: