Skip to content

Commit 08727b3

Browse files
committed
bug #771 [make:auth] Fixed newline characters (wouterj)
This PR was merged into the 1.0-dev branch. Discussion ---------- [make:auth] Fixed newline characters The wrong quotes were used, causing `\n\n` to be printed to the terminal (instead of real newlines) Commits ------- 2fa2596 Fixed newline characters
2 parents 9dcdb6c + 2fa2596 commit 08727b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Maker/MakeAuthenticator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ private function generateNextMessage(bool $securityYamlUpdated, string $authenti
348348
$logoutSetup,
349349
$this->useSecurity52
350350
);
351-
$nextTexts[] = '- Your <info>security.yaml</info> could not be updated automatically. You\'ll need to add the following config manually:\n\n'.$yamlExample;
351+
$nextTexts[] = "- Your <info>security.yaml</info> could not be updated automatically. You'll need to add the following config manually:\n\n".$yamlExample;
352352
}
353353

354354
if (self::AUTH_TYPE_FORM_LOGIN === $authenticatorType) {

0 commit comments

Comments
 (0)