Forces the finder to ignore version control directories.
This option is enabled by default.
$this
ExcludeDirectoryFilterIterator
public function ignoreVCS(bool $ignoreVCS) : static { if ($ignoreVCS) { $this->ignore |= static::IGNORE_VCS_FILES; } else { $this->ignore &= ~static::IGNORE_VCS_FILES; } return $this; }