소스 검색

[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)) {