public function MockSplFileInfo::isDir in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ Iterator/ MockSplFileInfo.php, line 60
Class
Namespace
Symfony\Component\Finder\Tests\IteratorCode
public function isDir() {
if (null === $this->type) {
return false !== strpos($this
->getFilename(), 'directory');
}
return self::TYPE_DIRECTORY === $this->type;
}