8000 merged branch stloyd/console_fixtures (PR #1915) · ajitomatix/symfony@9fd6b3c · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 27, 2024. It is now read-only.

Commit 9fd6b3c

Browse files
committed
merged branch stloyd/console_fixtures (PR symfony#1915)
Commits ------- 9f66263 [Console] Fix fixtures from failing tests Discussion ---------- [Console] Fix fixtures from failing tests
2 parents 860ae77 + 9f66263 commit 9fd6b3c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

tests/Symfony/Tests/Component/Console/Fixtures/application_asxml1.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<description>Displays help for a command</description>
77
<help>The &lt;info&gt;help&lt;/info&gt; command displays help for a given command:
88

9-
&lt;info&gt;./app/console help list&lt;/info&gt;
9+
&lt;info&gt;php app/console help list&lt;/info&gt;
1010

1111
You can also output the help as XML by using the &lt;comment&gt;--xml&lt;/comment&gt; option:
1212

13-
&lt;info&gt;./app/console help --xml list&lt;/info&gt;</help>
13+
&lt;info&gt;php app/console help --xml list&lt;/info&gt;</help>
1414
<aliases />
1515
<arguments>
1616
<argument name="command_name" is_required="0" is_array="0">
@@ -31,15 +31,15 @@
3131
<description>Lists commands</description>
3232
<help>The &lt;info&gt;list&lt;/info&gt; command lists all commands:
3333

34-
&lt;info&gt;./app/console list&lt;/info&gt;
34+
&lt;info&gt;php app/console list&lt;/info&gt;
3535

3636
You can also display the commands for a specific namespace:
3737

38-
&lt;info&gt;./app/console list test&lt;/info&gt;
38+
&lt;info&gt;php app/console list test&lt;/info&gt;
3939

4040
You can also output the information as XML by using the &lt;comment&gt;--xml&lt;/comment&gt; option:
4141

42-
&lt;info&gt;./app/console list --xml&lt;/info&gt;</help>
42+
&lt;info&gt;php app/console list --xml&lt;/info&gt;</help>
4343
<aliases/>
4444
<arguments>
4545
<argument name="namespace" is_required="0" is_array="0">

tests/Symfony/Tests/Component/Console/Fixtures/application_run2.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Options:
1818
Help:
1919
The help command displays help for a given command:
2020

21-
./app/console help list
21+
php app/console help list
2222

2323
You can also output the help as XML by using the --xml option:
2424

25-
./app/console help --xml list
25+
php app/console help --xml list
2626

tests/Symfony/Tests/Component/Console/Fixtures/application_run3.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Options:
1010
Help:
1111
The list command lists all commands:
1212

13-
./app/console list
13+
php app/console list
1414

1515
You can also display the commands for a specific namespace:
1616

17-
./app/console list test
17+
php app/console list test
1818

1919
You can also output the information as XML by using the --xml option:
2020

21-
./app/console list --xml
21+
php app/console list --xml
2222

0 commit comments

Comments
 (0)
0