From 64bd096d735360895a1c0ea9dc97612e73d1e40e Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sat, 18 Jan 2025 13:37:23 +0100 Subject: [PATCH] [Console]: Minor: Removing duplication Page: https://symfony.com/doc/6.4/console/calling_commands.html --- console/calling_commands.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/console/calling_commands.rst b/console/calling_commands.rst index 349f1357682..dd1f0b12ff9 100644 --- a/console/calling_commands.rst +++ b/console/calling_commands.rst @@ -1,9 +1,9 @@ How to Call Other Commands ========================== -If a command depends on another one being run before it you can call in the -console command itself. This is useful if a command depends on another command -or if you want to create a "meta" command that runs a bunch of other commands +If a command depends on another one being run before it you can call that in the +console command itself. This can be useful +if you want to create a "meta" command that runs a bunch of other commands (for instance, all commands that need to be run when the project's code has changed on the production servers: clearing the cache, generating Doctrine proxies, dumping web assets, ...).