Explorar el Código

[Finder] replaced static by self on a private variable

Fabien Potencier hace 13 años
padre
commit
926ac98c9a
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/Symfony/Component/Finder/Finder.php

+ 2 - 2
src/Symfony/Component/Finder/Finder.php

@@ -275,7 +275,7 @@ class Finder implements \IteratorAggregate
 
     static public function addVCSPattern($pattern)
     {
-        static::$vcsPatterns[] = $pattern;
+        self::$vcsPatterns[] = $pattern;
     }
 
     /**
@@ -474,7 +474,7 @@ class Finder implements \IteratorAggregate
         }
 
         if (static::IGNORE_VCS_FILES === (static::IGNORE_VCS_FILES & $this->ignore)) {
-            $this->exclude = array_merge($this->exclude, static::$vcsPatterns);
+            $this->exclude = array_merge($this->exclude, self::$vcsPatterns);
         }
 
         if (static::IGNORE_DOT_FILES === (static::IGNORE_DOT_FILES & $this->ignore)) {