Skip to content

Commit 5e9ac66

Browse files
committed
Fix quotes in exception messages
1 parent 46959fb commit 5e9ac66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EventListener/GuardListener.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private function getVariables(GuardEvent $event)
7575
$token = $this->tokenStorage->getToken();
7676

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

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

0 commit comments

Comments
 (0)