浏览代码

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;
 
     /**