diff --git a/docs/en/development.rst b/docs/en/development.rst index c7c7aa25..9cbcc3f8 100644 --- a/docs/en/development.rst +++ b/docs/en/development.rst @@ -129,7 +129,7 @@ looks like this:: /** * Hook method for defining this command's option parser. * - * @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options + * @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options * @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined * @return \Cake\Console\ConsoleOptionParser The built parser. */ @@ -172,7 +172,7 @@ And the resultant baked class (**src/Command/FooCommand.php**) looks like this:: /** * Hook method for defining this command's option parser. * - * @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options + * @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options * @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined * @return \Cake\Console\ConsoleOptionParser The built parser. */ diff --git a/docs/fr/development.rst b/docs/fr/development.rst index 697a6301..dad16138 100644 --- a/docs/fr/development.rst +++ b/docs/fr/development.rst @@ -137,7 +137,7 @@ ressemble à ceci:: /** * Méthode hook pour définir le parseur d'option de cette commande. * - * @see https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options + * @link https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options * @param \Cake\Console\ConsoleOptionParser $parser Le parseur à définir * @return \Cake\Console\ConsoleOptionParser Le parseur construit. */ @@ -181,7 +181,7 @@ ressemble à ceci:: /** * Méthode hook pour définir le parseur d'option de cette commande. * - * @see https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options + * @link https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options * @param \Cake\Console\ConsoleOptionParser $parser Le parseur à définir * @return \Cake\Console\ConsoleOptionParser Le parseur construit. */ diff --git a/templates/bake/Command/command.twig b/templates/bake/Command/command.twig index 9580b3fa..d862366b 100644 --- a/templates/bake/Command/command.twig +++ b/templates/bake/Command/command.twig @@ -58,7 +58,7 @@ class {{ name }}Command extends Command /** * Hook method for defining this command's option parser. * - * @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options + * @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options * @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined * @return \Cake\Console\ConsoleOptionParser The built parser. */ diff --git a/tests/comparisons/Command/testBakePlugin.php b/tests/comparisons/Command/testBakePlugin.php index e03012ff..f3f0ea73 100644 --- a/tests/comparisons/Command/testBakePlugin.php +++ b/tests/comparisons/Command/testBakePlugin.php @@ -43,7 +43,7 @@ public static function getDescription(): string /** * Hook method for defining this command's option parser. * - * @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options + * @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options * @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined * @return \Cake\Console\ConsoleOptionParser The built parser. */