Skip to content

Commit

Permalink
add space in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mvhirsch committed Jun 4, 2024
1 parent 1a049b7 commit 22157c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Security/FirewallAwareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private function getForFirewall(): object
if (!$this->locator->has($firewallName)) {
$message = 'No '.$serviceIdentifier.' found for this firewall.';
if (\defined(static::class.'::FIREWALL_OPTION')) {
$message .= sprintf('Did you forget to add a "'.static::FIREWALL_OPTION.'" key under your "%s" firewall?', $firewallName);
$message .= sprintf(' Did you forget to add a "'.static::FIREWALL_OPTION.'" key under your "%s" firewall?', $firewallName);
}

throw new \LogicException($message);
Expand Down

0 comments on commit 22157c5

Please sign in to comment.