소스 검색

Merge remote branch 'usefulthink/phpdoc-containeraware'

* usefulthink/phpdoc-containeraware:
  removed obsolete use-statement
  [DependencyInjection] added phpdoc for property $container in ContainerAware
Fabien Potencier 14 년 전
부모
커밋
9cc7aacf76
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/Symfony/Component/DependencyInjection/ContainerAware.php

+ 3 - 0
src/Symfony/Component/DependencyInjection/ContainerAware.php

@@ -18,6 +18,9 @@ namespace Symfony\Component\DependencyInjection;
  */
 class ContainerAware implements ContainerAwareInterface
 {
+    /**
+     * @var ContainerInterface
+     */
     protected $container;
 
     /**