Commits ------- 40e5b60 [FrameworkBundle] added return type for getContainer() Discussion ---------- added return type for getContainer() IDE type inference support
@@ -28,6 +28,9 @@ abstract class ContainerAwareCommand extends Command implements ContainerAwareIn
*/
private $container;
+ /**
+ * @return ContainerInterface
+ */
protected function getContainer()
{
if (null === $this->container) {