We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5754d25 commit 0060375Copy full SHA for 0060375
src/Command/Process/ShowStatus.php
@@ -111,9 +111,14 @@ function ($patch) {
111
*/
112
private function printDetailsInfo(OutputInterface $output)
113
{
114
+ $supportUrl = 'https://support.magento.com';
115
+ $releaseNotesUrl = 'https://devdocs.magento.com/quality-patches/release-notes.html';
116
+
117
$output->writeln(
- '<info>More detailed information about patches you can find on </info>' .
- '<href=https://support.magento.com>https://support.magento.com</>'
118
+ '<info>Patch details you can find on </info>' .
119
+ sprintf('<href=%1$s>%1$s</> <info>(search for patch id, ex. MDVA-30265)</info>', $supportUrl) .
120
+ PHP_EOL .
121
+ sprintf('<info>Release notes</info> <href=%1$s>%1$s</>', $releaseNotesUrl)
122
);
123
}
124
0 commit comments