소스 검색

Fix AutoloadGeneratorTest for PHP 5.3.x

Bryan Davis 10 년 전
부모
커밋
92455759fc
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      tests/Composer/Test/Autoload/AutoloadGeneratorTest.php

+ 7 - 1
tests/Composer/Test/Autoload/AutoloadGeneratorTest.php

@@ -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()
     {