public function MockSplFileInfo::isReadable in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ Iterator/ MockSplFileInfo.php, line 69
Class
Namespace
Symfony\Component\Finder\Tests\IteratorCode
public function isReadable() {
if (null === $this->mode) {
return preg_match('/r\\+/', $this
->getFilename());
}
return preg_match('/r\\+/', $this->mode);
}