Преглед изворни кода

[Finder] replaced static by self on a private variable

Fabien Potencier пре 13 година
родитељ
комит
926ac98c9a
1 измењених фајлова са 2 додато и 2 уклоњено
  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)) {