-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Symfony Console PHP 8.2 deprecation warnings (#258)
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
patches/symfony/console/0001-Fix-PHP-8.2-compatibility.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From: Michele Locati <[email protected]> | ||
Date: Fri, 10 Jun 2022 17:06:32 +0200 | ||
Subject: [PATCH] Fix PHP 8.2 deprecation warning about strings interpolation | ||
|
||
--- a/Command/DumpCompletionCommand.php | ||
+++ b/Command/DumpCompletionCommand.php | ||
@@ -53,7 +53,7 @@ to use shell autocompletion (currently only bash completion is supported). | ||
|
||
Dump the script to a global completion file and restart your shell: | ||
|
||
- <info>%command.full_name% bash | sudo tee /etc/bash_completion.d/${commandName}</> | ||
+ <info>%command.full_name% bash | sudo tee /etc/bash_completion.d/{$commandName}</> | ||
|
||
Or dump the script to a local file and source it: | ||
|
||
@@ -70,7 +70,7 @@ Or dump the script to a local file and source it: | ||
|
||
Add this add the end of your shell configuration file (e.g. <info>"~/.bashrc"</>): | ||
|
||
- <info>eval "$(${fullCommand} completion bash)"</> | ||
+ <info>eval "$({$fullCommand} completion bash)"</> | ||
EOH | ||
) | ||
->addArgument('shell', InputArgument::OPTIONAL, 'The shell type (e.g. "bash"), the value of the "$SHELL" env var will be used if this is not given') |