Skip to content

Commit

Permalink
Merge pull request #949 from cleptric/update-annotations-order
Browse files Browse the repository at this point in the history
Update annotation order
  • Loading branch information
dereuromark committed Oct 4, 2023
2 parents f2a9267 + 4fdece4 commit ecd3e92
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/en/development.rst
Expand Up @@ -145,7 +145,7 @@ looks like this::
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return null|void|int The exit code or null for success
* @return int|null|void The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io)
{
Expand Down Expand Up @@ -188,7 +188,7 @@ And the resultant baked class (**src/Command/FooCommand.php**) looks like this::
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return null|void|int The exit code or null for success
* @return int|null|void The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io)
{
Expand Down
4 changes: 2 additions & 2 deletions docs/fr/development.rst
Expand Up @@ -153,7 +153,7 @@ ressemble à ceci::
*
* @param \Cake\Console\Arguments $args Les arguments de la commande.
* @param \Cake\Console\ConsoleIo $io La console il
* @return null|void|int Le code de sortie ou null pour un succès
* @return int|null|void Le code de sortie ou null pour un succès
*/
public function execute(Arguments $args, ConsoleIo $io)
{
Expand Down Expand Up @@ -197,7 +197,7 @@ ressemble à ceci::
*
* @param \Cake\Console\Arguments $args Les arguments de la commande.
* @param \Cake\Console\ConsoleIo $io La console io
* @return null|void|int Le code de sortie ou null pour un succès
* @return int|null|void Le code de sortie ou null pour un succès
*/
public function execute(Arguments $args, ConsoleIo $io)
{
Expand Down
2 changes: 1 addition & 1 deletion templates/bake/Command/command.twig
Expand Up @@ -47,7 +47,7 @@ class {{ name }}Command extends Command
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return null|void|int The exit code or null for success
* @return int|null|void The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/comparisons/Command/testBakePlugin.php
Expand Up @@ -32,7 +32,7 @@ public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionPar
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return null|void|int The exit code or null for success
* @return int|null|void The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io)
{
Expand Down

0 comments on commit ecd3e92

Please sign in to comment.