You are here

public function Finder::count in Database Sanitize 7

Counts all the results collected by the iterators.

Return value

int

File

vendor/symfony/finder/Finder.php, line 636

Class

Finder
Finder allows to build rules to find files and directories.

Namespace

Symfony\Component\Finder

Code

public function count() {
  return iterator_count($this
    ->getIterator());
}