12 namespace Symfony\Component\Finder\Iterator;
36 parent::__construct($iterator);
46 $fileinfo = $this->current();
47 if (self::ONLY_DIRECTORIES === (self::ONLY_DIRECTORIES & $this->mode) && $fileinfo->isFile()) {
49 }
elseif (self::ONLY_FILES === (self::ONLY_FILES & $this->mode) && $fileinfo->isDir()) {