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

Commit

Permalink
s/%/%s/ for sprintf() calls in ListenerOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanDotPro committed May 27, 2012
1 parent 6236785 commit d696070
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Listener/ListenerOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function setModulePaths($modulePaths)
{
if (!is_array($modulePaths) && !$modulePaths instanceof Traversable) {
throw new Exception\InvalidArgumentException(
sprintf('Argument passed to %::%s() must be an array, '
sprintf('Argument passed to %s::%s() must be an array, '
. 'implement the \Traversable interface, or be an '
. 'instance of Zend\Config\Config. %s given.',
__CLASS__, __METHOD__, gettype($modulePaths))
Expand Down Expand Up @@ -112,7 +112,7 @@ public function setConfigGlobPaths($configGlobPaths)
{
if (!is_array($configGlobPaths) && !$configGlobPaths instanceof Traversable) {
throw new Exception\InvalidArgumentException(
sprintf('Argument passed to %::%s() must be an array, '
sprintf('Argument passed to %s::%s() must be an array, '
. 'implement the \Traversable interface, or be an '
. 'instance of Zend\Config\Config. %s given.',
__CLASS__, __METHOD__, gettype($configGlobPaths))
Expand All @@ -131,7 +131,7 @@ public function setConfigStaticPaths($configStaticPaths)
{
if (!is_array($configStaticPaths) && !$configStaticPaths instanceof Traversable) {
throw new Exception\InvalidArgumentException(
sprintf('Argument passed to %::%s() must be an array, '
sprintf('Argument passed to %s::%s() must be an array, '
. 'implement the \Traversable interface, or be an '
. 'instance of Zend\Config\Config. %s given.',
__CLASS__, __METHOD__, gettype($configStaticPaths))
Expand Down

0 comments on commit d696070

Please sign in to comment.