diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2017-09-19 21:50:22 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2017-09-19 21:50:22 +0200 |
commit | 2cb636b651c889243919d99eda8fa724d5c08392 (patch) | |
tree | c997d1ffbe1e3a0a84db8a0e9e72d39c954f19c4 /src/Container | |
parent | abb99bf36c6c09f395c49ca34eb49d2ba6ff224d (diff) |
Added Container unit test
Diffstat (limited to 'src/Container')
-rw-r--r-- | src/Container/Container.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Container/Container.php b/src/Container/Container.php index 9af5c1e6..59a17a04 100644 --- a/src/Container/Container.php +++ b/src/Container/Container.php @@ -38,7 +38,7 @@ class Container implements ContainerInterface return $this->resolve($id); } - throw new NotFoundException(sprintf('The entry with the id "%s" could not be found')); + throw new NotFoundException(sprintf('The entry with the id "%s" could not be found', $id)); } /** |