1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-11 01:22:54 +00:00

make static

This commit is contained in:
till 2012-03-09 14:34:02 +01:00
parent c78d9ffece
commit 4c2da57140

View file

@ -96,7 +96,7 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
$this->svnPassword = $this->io->ask("Password");
$this->useAuth = true;
$cacheTrueAnswers = array('yes', 'y', 'true', 'ja', 'si', 'da');
static $cacheTrueAnswers = array('yes', 'y', 'true', 'ja', 'si', 'da');
$cacheAnswer = strtolower($this->io->ask("Should we Subversion cache these credentials?", 'no'));
if (in_array($cacheAnswer, $cacheTrueAnswers)) {