summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-09-19 21:50:22 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2017-09-19 21:50:22 +0200
commit2cb636b651c889243919d99eda8fa724d5c08392 (patch)
treec997d1ffbe1e3a0a84db8a0e9e72d39c954f19c4 /src
parentabb99bf36c6c09f395c49ca34eb49d2ba6ff224d (diff)
Added Container unit test
Diffstat (limited to 'src')
-rw-r--r--src/Container/Container.php2
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));
}
/**