소스 검색

[ProfilerBundle] fixed typo

Fabien Potencier 15 년 전
부모
커밋
5c11f9f42d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorManager.php

+ 2 - 0
src/Symfony/Framework/ProfilerBundle/DataCollector/DataCollectorManager.php

@@ -31,10 +31,12 @@ class DataCollectorManager
   protected $collectors;
   protected $response;
   protected $lifetime;
+  protected $logger;
 
   public function __construct(ContainerInterface $container, LoggerInterface $logger, ProfilerStorage $profilerStorage, $lifetime = 86400)
   {
     $this->container = $container;
+    $this->logger = $logger;
     $this->lifetime = $lifetime;
     $this->profilerStorage = $profilerStorage;
     $this->collectors = $this->initCollectors();