vendor/symfony/finder/Iterator/PathFilterIterator.php line 27

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Finder\Iterator;
  11. /**
  12.  * PathFilterIterator filters files by path patterns (e.g. some/special/dir).
  13.  *
  14.  * @author Fabien Potencier  <fabien@symfony.com>
  15.  * @author Włodzimierz Gajda <gajdaw@gajdaw.pl>
  16.  */
  17. class PathFilterIterator extends MultiplePcreFilterIterator
  18. {
  19.     /**
  20.      * Filters the iterator values.
  21.      *
  22.      * @return bool true if the value should be kept, false otherwise
  23.      */
  24.     public function accept()
  25.     {
  26.         $filename $this->current()->getRelativePathname();
  27.         if ('\\' === \DIRECTORY_SEPARATOR) {
  28.             $filename str_replace('\\''/'$filename);
  29.         }
  30.         return $this->isAccepted($filename);
  31.     }
  32.     /**
  33.      * Converts strings to regexp.
  34.      *
  35.      * PCRE patterns are left unchanged.
  36.      *
  37.      * Default conversion:
  38.      *     'lorem/ipsum/dolor' ==>  'lorem\/ipsum\/dolor/'
  39.      *
  40.      * Use only / as directory separator (on Windows also).
  41.      *
  42.      * @param string $str Pattern: regexp or dirname
  43.      *
  44.      * @return string regexp corresponding to a given string or regexp
  45.      */
  46.     protected function toRegex(string $str)
  47.     {
  48.         return $this->isRegex($str) ? $str '/'.preg_quote($str'/').'/';
  49.     }
  50. }