Parcourir la source

Merge remote branch 'usefulthink/phpdoc-containeraware'

* usefulthink/phpdoc-containeraware:
  removed obsolete use-statement
  [DependencyInjection] added phpdoc for property $container in ContainerAware
Fabien Potencier il y a 14 ans
Parent
commit
9cc7aacf76
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  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;
 
     /**