Skip to content

Commit 404e82e

Browse files
authored
Copy PHPDoc comments from the specification
There were some differences of comments between the specification and this interface which I tried to eliminate.
1 parent 18f0c75 commit 404e82e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ContainerInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface ContainerInterface
1515
*
1616
* @param string $id Identifier of the entry to look for.
1717
*
18-
* @throws NotFoundExceptionInterface No entry was found for this identifier.
18+
* @throws NotFoundExceptionInterface No entry was found for **this** identifier.
1919
* @throws ContainerExceptionInterface Error while retrieving the entry.
2020
*
2121
* @return mixed Entry.
@@ -31,7 +31,7 @@ public function get($id);
3131
*
3232
* @param string $id Identifier of the entry to look for.
3333
*
34-
* @return boolean
34+
* @return bool
3535
*/
3636
public function has($id);
3737
}

0 commit comments

Comments
 (0)