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); }