File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ The traditional way of adding commands to your application is to use
12
12
13
13
This approach can have downsides as some commands might be expensive to
14
14
instantiate in which case you may want to lazy-load them. Note however that lazy-loading
15
- is not absolute. Indeed a few commands such as `list `, `help ` or `_complete ` can
16
- require to instantiate other commands although they are lazy. For example `list ` needs
15
+ is not absolute. Indeed a few commands such as `` list `` , `` help `` or `` _complete ` ` can
16
+ require to instantiate other commands although they are lazy. For example `` list ` ` needs
17
17
to get the name and description of all commands, which might require the command to be
18
18
instantiated to get.
19
19
@@ -54,7 +54,7 @@ Another way to do so is to take advantage of ``Symfony\Component\Console\Command
54
54
55
55
// In this case although the command is instantiated, the underlying command factory
56
56
// will not be executed unless the command is actually executed or one tries to access
57
- // to its input definition to know its argument or option inputs.
57
+ // its input definition to know its argument or option inputs.
58
58
$lazyCommand = new LazyCommand(
59
59
'app:heavy',
60
60
[],
You can’t perform that action at this time.
0 commit comments