Skip to content

Commit

Permalink
Merge pull request #73 from prooph/prolic-patch-1
Browse files Browse the repository at this point in the history
fix exception message
  • Loading branch information
codeliner committed Oct 2, 2015
2 parents 09c5096 + 483a4dd commit 76fc31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Container/AbstractBusFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private function attachPlugins(MessageBus $bus, array &$utils, ContainerInterfac
foreach ($utils as $index => $util) {
if (! is_string($util) || ! $container->has($util)) {
throw new RuntimeException(sprintf(
'Wrong message bus utility configured at %. Either it is not a string or unknown by the container.',
'Wrong message bus utility configured at %s. Either it is not a string or unknown by the container.',
'prooph.service_bus.' . $this->getBusConfigKey() . '.' . $index
));
}
Expand Down

0 comments on commit 76fc31b

Please sign in to comment.