Skip to content

Commit 2971f7f

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix quotes in exception messages
2 parents d0ed681 + 5e9ac66 commit 2971f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EventListener/GuardListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private function getVariables(GuardEvent $event): array
8383
$token = $this->tokenStorage->getToken();
8484

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

8989
if (method_exists($token, 'getRoleNames')) {

0 commit comments

Comments
 (0)