Skip to content
This repository has been archived by the owner on Aug 25, 2018. It is now read-only.

Commit

Permalink
Add missing sprintf variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Nov 16, 2015
1 parent 033069f commit 4a88d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TokenGenerator.php
Expand Up @@ -118,7 +118,7 @@ public function setOption($name, $value)
if (!array_key_exists($name, $this->options)) {
throw new TokenException(
sprintf(
'Unsupported option "%s". Valid options are: ', $name, implode(', ', array_keys($this->options))
'Unsupported option "%s". Valid options are: %s', $name, implode(', ', array_keys($this->options))
)
);
}
Expand Down

0 comments on commit 4a88d78

Please sign in to comment.