Skip to content

Commit

Permalink
Fix quotes in exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Mar 16, 2020
1 parent 46959fb commit 5e9ac66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EventListener/GuardListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private function getVariables(GuardEvent $event)
$token = $this->tokenStorage->getToken();

if (null === $token) {
throw new InvalidTokenConfigurationException(sprintf('There are no tokens available for workflow %s.', $event->getWorkflowName()));
throw new InvalidTokenConfigurationException(sprintf('There are no tokens available for workflow "%s".', $event->getWorkflowName()));
}

if (null !== $this->roleHierarchy) {
Expand Down

0 comments on commit 5e9ac66

Please sign in to comment.