* * For the full copyright and license information, please view the LICENSE file * that was distributed with this source code. */ declare(strict_types=1); namespace Respect\Validation\Rules; use SplFileInfo; use function is_readable; use function is_string; /** * Validates if the given data is a file exists and is readable. * * @author Danilo Correa * @author Henrique Moody */ final class Readable extends AbstractRule { /** * {@inheritDoc} */ public function validate($input): bool { if ($input instanceof SplFileInfo) { return $input->isReadable(); } return is_string($input) && is_readable($input); } }