Skip to content

Commit c5b9cb0

Browse files
committed
fixed CS
1 parent a2ce28e commit c5b9cb0

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Tests/Command/ListCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function testExecuteListsCommandsWithRawOption()
5050
public function testExecuteListsCommandsWithNamespaceArgument()
5151
{
5252

53-
require_once(realpath(__DIR__.'/../Fixtures/FooCommand.php'));
53+
require_once realpath(__DIR__.'/../Fixtures/FooCommand.php');
5454
$application = new Application();
5555
$application->add(new \FooCommand());
5656
$commandTester = new CommandTester($command = $application->get('list'));

Tests/Fixtures/application_1.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<usage>help [--xml] [--format="..."] [--raw] [command_name]</usage>
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:
8-
8+
99
&lt;info&gt;php app/console help list&lt;/info&gt;
10-
10+
1111
You can also output the help in other formats by using the &lt;comment&gt;--format&lt;/comment&gt; option:
12-
12+
1313
&lt;info&gt;php app/console help --format=xml list&lt;/info&gt;
14-
14+
1515
To display the list of available commands, please use the &lt;info&gt;list&lt;/info&gt; command.</help>
1616
<aliases/>
1717
<arguments>
@@ -60,19 +60,19 @@
6060
<usage>list [--xml] [--raw] [--format="..."] [namespace]</usage>
6161
<description>Lists commands</description>
6262
<help>The &lt;info&gt;list&lt;/info&gt; command lists all commands:
63-
63+
6464
&lt;info&gt;php app/console list&lt;/info&gt;
65-
65+
6666
You can also display the commands for a specific namespace:
67-
67+
6868
&lt;info&gt;php app/console list test&lt;/info&gt;
69-
69+
7070
You can also output the information in other formats by using the &lt;comment&gt;--format&lt;/comment&gt; option:
71-
71+
7272
&lt;info&gt;php app/console list --format=xml&lt;/info&gt;
73-
73+
7474
It's also possible to get raw list of commands (useful for embedding command runner):
75-
75+
7676
&lt;info&gt;php app/console list --raw&lt;/info&gt;</help>
7777
<aliases/>
7878
<arguments>

Tests/Fixtures/application_2.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<usage>help [--xml] [--format="..."] [--raw] [command_name]</usage>
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:
8-
8+
99
&lt;info&gt;php app/console help list&lt;/info&gt;
10-
10+
1111
You can also output the help in other formats by using the &lt;comment&gt;--format&lt;/comment&gt; option:
12-
12+
1313
&lt;info&gt;php app/console help --format=xml list&lt;/info&gt;
14-
14+
1515
To display the list of available commands, please use the &lt;info&gt;list&lt;/info&gt; command.</help>
1616
<aliases/>
1717
<arguments>
@@ -60,19 +60,19 @@
6060
<usage>list [--xml] [--raw] [--format="..."] [namespace]</usage>
6161
<description>Lists commands</description>
6262
<help>The &lt;info&gt;list&lt;/info&gt; command lists all commands:
63-
63+
6464
&lt;info&gt;php app/console list&lt;/info&gt;
65-
65+
6666
You can also display the commands for a specific namespace:
67-
67+
6868
&lt;info&gt;php app/console list test&lt;/info&gt;
69-
69+
7070
You can also output the information in other formats by using the &lt;comment&gt;--format&lt;/comment&gt; option:
71-
71+
7272
&lt;info&gt;php app/console list --format=xml&lt;/info&gt;
73-
73+
7474
It's also possible to get raw list of commands (useful for embedding command runner):
75-
75+
7676
&lt;info&gt;php app/console list --raw&lt;/info&gt;</help>
7777
<aliases/>
7878
<arguments>

0 commit comments

Comments
 (0)