Skip to content

Commit

Permalink
Copy PHPDoc comments from the specification
Browse files Browse the repository at this point in the history
There were some differences of comments between the specification and this interface which I tried to eliminate.
  • Loading branch information
kocsismate authored Feb 14, 2017
1 parent 18f0c75 commit 404e82e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ContainerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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);
}

0 comments on commit 404e82e

Please sign in to comment.