From 8e0d96ca80f925e5d91a7869103459de9027edd7 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Mon, 11 May 2015 14:02:11 +0200 Subject: [PATCH] ContainerInterface: unused exception dropped --- src/Symfony/Component/DependencyInjection/Container.php | 1 - src/Symfony/Component/DependencyInjection/ContainerInterface.php | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Container.php b/src/Symfony/Component/DependencyInjection/Container.php index 4a9fa8905e..4e92d1bd92 100644 --- a/src/Symfony/Component/DependencyInjection/Container.php +++ b/src/Symfony/Component/DependencyInjection/Container.php @@ -266,7 +266,6 @@ class Container implements IntrospectableContainerInterface * * @return object The associated service * - * @throws InvalidArgumentException if the service is not defined * @throws ServiceCircularReferenceException When a circular reference is detected * @throws ServiceNotFoundException When the service is not defined * @throws \Exception if an exception has been thrown when the service has been resolved diff --git a/src/Symfony/Component/DependencyInjection/ContainerInterface.php b/src/Symfony/Component/DependencyInjection/ContainerInterface.php index 0f32089dcc..19e800b314 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerInterface.php +++ b/src/Symfony/Component/DependencyInjection/ContainerInterface.php @@ -50,7 +50,6 @@ interface ContainerInterface * * @return object The associated service * - * @throws InvalidArgumentException if the service is not defined * @throws ServiceCircularReferenceException When a circular reference is detected * @throws ServiceNotFoundException When the service is not defined *