TheSeer\Autoload\Config::isFollowSymlinks PHP Method

    public function isFollowSymlinks()
    {
        return $this->followSymlinks;
    }

Usage Example

Example #1
0
 /**
  * Get instance of DirectoryScanner with filter options applied
  *
  * @param bool $filter
  * @return DirectoryScanner
  */
 public function getScanner($filter = TRUE)
 {
     $scanner = new DirectoryScanner();
     if ($filter) {
         $scanner->setIncludes($this->config->getInclude());
         $scanner->setExcludes($this->config->getExclude());
     }
     if ($this->config->isFollowSymlinks()) {
         $scanner->setFlag(\FilesystemIterator::FOLLOW_SYMLINKS);
     }
     return $scanner;
 }