1
0
Fork 0

Fix AutoloadGeneratorTest for PHP 5.3.x

pull/3610/head
Bryan Davis 2015-01-03 18:01:18 -07:00
parent ad1f8e6c5a
commit 92455759fc
1 changed files with 7 additions and 1 deletions

View File

@ -68,9 +68,15 @@ class AutoloadGeneratorTest extends TestCase
private $eventDispatcher;
/**
* Map of setting name => return value configuration for the stub Config
* object.
*
* Note: must be public for compatibility with PHP 5.3 runtimes where
* closures cannot access private members of the classes they are created
* in.
* @var array
*/
private $configValueMap;
public $configValueMap;
protected function setUp()
{