Skip to content

Commit 3f4ed72

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Add missing dots at the end of exception messages
2 parents 3abf82c + 895d728 commit 3f4ed72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DependencyInjection/Security/Factory/GuardAuthenticationFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,6 @@ private function determineEntryPoint(?string $defaultEntryPointId, array $config
115115
}
116116

117117
// we have multiple entry points - we must ask them to configure one
118-
throw new \LogicException(sprintf('Because you have multiple guard authenticators, you need to set the "guard.entry_point" key to one of your authenticators (%s)', implode(', ', $authenticatorIds)));
118+
throw new \LogicException(sprintf('Because you have multiple guard authenticators, you need to set the "guard.entry_point" key to one of your authenticators (%s).', implode(', ', $authenticatorIds)));
119119
}
120120
}

DependencyInjection/SecurityExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ private function createUserDaoProvider(string $name, array $provider, ContainerB
655655
return $name;
656656
}
657657

658-
throw new InvalidConfigurationException(sprintf('Unable to create definition for "%s" user provider', $name));
658+
throw new InvalidConfigurationException(sprintf('Unable to create definition for "%s" user provider.', $name));
659659
}
660660

661661
private function getUserProviderId(string $name): string

0 commit comments

Comments
 (0)