[Finder] replaced static by self on a private variable

This commit is contained in:
Fabien Potencier 2012-05-15 18:46:20 +02:00
parent ec45169f4f
commit 926ac98c9a

View File

@ -275,7 +275,7 @@ class Finder implements \IteratorAggregate
static public function addVCSPattern($pattern) 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)) { 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)) { if (static::IGNORE_DOT_FILES === (static::IGNORE_DOT_FILES & $this->ignore)) {