From 404e82e65e974e5a545ab1b28f99bc9bb980f386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Kocsis?= Date: Tue, 14 Feb 2017 15:00:23 +0100 Subject: [PATCH] Copy PHPDoc comments from the specification There were some differences of comments between the specification and this interface which I tried to eliminate. --- src/ContainerInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ContainerInterface.php b/src/ContainerInterface.php index 87d83ac..c3a7206 100644 --- a/src/ContainerInterface.php +++ b/src/ContainerInterface.php @@ -15,7 +15,7 @@ interface ContainerInterface * * @param string $id Identifier of the entry to look for. * - * @throws NotFoundExceptionInterface No entry was found for this identifier. + * @throws NotFoundExceptionInterface No entry was found for **this** identifier. * @throws ContainerExceptionInterface Error while retrieving the entry. * * @return mixed Entry. @@ -31,7 +31,7 @@ public function get($id); * * @param string $id Identifier of the entry to look for. * - * @return boolean + * @return bool */ public function has($id); }