Skip to content

Commit b285901

Browse files
authored
Merge pull request #1048 from cakephp/3.x-links
Consolidate links.
2 parents 6fd15ae + 293a7de commit b285901

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/en/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ looks like this::
129129
/**
130130
* Hook method for defining this command's option parser.
131131
*
132-
* @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
132+
* @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
133133
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
134134
* @return \Cake\Console\ConsoleOptionParser The built parser.
135135
*/
@@ -172,7 +172,7 @@ And the resultant baked class (**src/Command/FooCommand.php**) looks like this::
172172
/**
173173
* Hook method for defining this command's option parser.
174174
*
175-
* @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
175+
* @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
176176
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
177177
* @return \Cake\Console\ConsoleOptionParser The built parser.
178178
*/

docs/fr/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ ressemble à ceci::
137137
/**
138138
* Méthode hook pour définir le parseur d'option de cette commande.
139139
*
140-
* @see https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
140+
* @link https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
141141
* @param \Cake\Console\ConsoleOptionParser $parser Le parseur à définir
142142
* @return \Cake\Console\ConsoleOptionParser Le parseur construit.
143143
*/
@@ -181,7 +181,7 @@ ressemble à ceci::
181181
/**
182182
* Méthode hook pour définir le parseur d'option de cette commande.
183183
*
184-
* @see https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
184+
* @link https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
185185
* @param \Cake\Console\ConsoleOptionParser $parser Le parseur à définir
186186
* @return \Cake\Console\ConsoleOptionParser Le parseur construit.
187187
*/

templates/bake/Command/command.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class {{ name }}Command extends Command
5858
/**
5959
* Hook method for defining this command's option parser.
6060
*
61-
* @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
61+
* @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
6262
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
6363
* @return \Cake\Console\ConsoleOptionParser The built parser.
6464
*/

tests/comparisons/Command/testBakePlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static function getDescription(): string
4343
/**
4444
* Hook method for defining this command's option parser.
4545
*
46-
* @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
46+
* @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
4747
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
4848
* @return \Cake\Console\ConsoleOptionParser The built parser.
4949
*/

0 commit comments

Comments
 (0)