소스 검색

[DependencyInjection] made a small speed optimization

Fabien Potencier 15 년 전
부모
커밋
9b3eec8861
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/Symfony/Components/DependencyInjection/Dumper/PhpDumper.php

+ 3 - 1
src/Symfony/Components/DependencyInjection/Dumper/PhpDumper.php

@@ -306,7 +306,9 @@ EOF;
    */
   public function __construct()
   {
-    parent::__construct(\$this->getDefaultParameters());
+    parent::__construct();
+
+    \$this->parameters = \$this->getDefaultParameters();
   }
 
 EOF;