This repository was archived by the owner on Sep 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
tests/Symfony/Tests/Component/Console/Fixtures Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 6
6
<description>Displays help for a command</description>
7
7
<help>The <info>help</info> command displays help for a given command:
8
8
9
- <info>./ app/console help list</info>
9
+ <info>php app/console help list</info>
10
10
11
11
You can also output the help as XML by using the <comment>--xml</comment> option:
12
12
13
- <info>./ app/console help --xml list</info></help>
13
+ <info>php app/console help --xml list</info></help>
14
14
<aliases />
15
15
<arguments>
16
16
<argument name="command_name" is_required="0" is_array="0">
31
31
<description>Lists commands</description>
32
32
<help>The <info>list</info> command lists all commands:
33
33
34
- <info>./ app/console list</info>
34
+ <info>php app/console list</info>
35
35
36
36
You can also display the commands for a specific namespace:
37
37
38
- <info>./ app/console list test</info>
38
+ <info>php app/console list test</info>
39
39
40
40
You can also output the information as XML by using the <comment>--xml</comment> option:
41
41
42
- <info>./ app/console list --xml</info></help>
42
+ <info>php app/console list --xml</info></help>
43
43
<aliases/>
44
44
<arguments>
45
45
<argument name="namespace" is_required="0" is_array="0">
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ Options:
18
18
Help:
19
19
The help command displays help for a given command:
20
20
21
- ./ app/console help list
21
+ php app/console help list
22
22
23
23
You can also output the help as XML by using the --xml option:
24
24
25
- ./ app/console help --xml list
25
+ php app/console help --xml list
26
26
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ Options:
10
10
Help:
11
11
The list command lists all commands:
12
12
13
- ./ app/console list
13
+ php app/console list
14
14
15
15
You can also display the commands for a specific namespace:
16
16
17
- ./ app/console list test
17
+ php app/console list test
18
18
19
19
You can also output the information as XML by using the --xml option:
20
20
21
- ./ app/console list --xml
21
+ php app/console list --xml
22
22
You can’t perform that action at this time.
0 commit comments