Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
- one argument per line (sprintf call)
  • Loading branch information
weierophinney committed Oct 22, 2013
1 parent dc2205d commit b655053
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ServiceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ protected function resolveAlias($cName)
if (isset($stack[$cName])) {
throw new Exception\CircularReferenceException(sprintf(
'Circular alias reference: %s -> %s',
implode(' -> ', $stack), $cName
implode(' -> ', $stack),
$cName
));
}

Expand Down

0 comments on commit b655053

Please sign in to comment.