@@ -20,26 +20,26 @@ discard block |
||
20 | 20 | $commandTester = new CommandTester($setCommand); |
21 | 21 | $commandTester->execute( |
22 | 22 | array( |
23 | - 'command' => $setCommand->getName(), |
|
24 | - 'path' => 'n98_magerun/foo/bar', |
|
25 | - 'value' => '1234', |
|
23 | + 'command' => $setCommand->getName(), |
|
24 | + 'path' => 'n98_magerun/foo/bar', |
|
25 | + 'value' => '1234', |
|
26 | 26 | ) |
27 | 27 | ); |
28 | 28 | |
29 | 29 | $commandTester = new CommandTester($getCommand); |
30 | 30 | $commandTester->execute( |
31 | 31 | array( |
32 | - 'command' => $getCommand->getName(), |
|
33 | - 'path' => 'n98_magerun/foo/bar', |
|
32 | + 'command' => $getCommand->getName(), |
|
33 | + 'path' => 'n98_magerun/foo/bar', |
|
34 | 34 | ) |
35 | 35 | ); |
36 | 36 | $this->assertContains('| n98_magerun/foo/bar | default | 0 | 1234 |', $commandTester->getDisplay()); |
37 | 37 | |
38 | 38 | $commandTester->execute( |
39 | 39 | array( |
40 | - 'command' => $getCommand->getName(), |
|
41 | - 'path' => 'n98_magerun/foo/bar', |
|
42 | - '--update-script' => true |
|
40 | + 'command' => $getCommand->getName(), |
|
41 | + 'path' => 'n98_magerun/foo/bar', |
|
42 | + '--update-script' => true |
|
43 | 43 | ) |
44 | 44 | ); |
45 | 45 | $this->assertContains( |
@@ -49,9 +49,9 @@ discard block |
||
49 | 49 | |
50 | 50 | $commandTester->execute( |
51 | 51 | array( |
52 | - 'command' => $getCommand->getName(), |
|
53 | - 'path' => 'n98_magerun/foo/bar', |
|
54 | - '--magerun-script' => true |
|
52 | + 'command' => $getCommand->getName(), |
|
53 | + 'path' => 'n98_magerun/foo/bar', |
|
54 | + '--magerun-script' => true |
|
55 | 55 | ) |
56 | 56 | ); |
57 | 57 | $this->assertContains( |
@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | $invalidFormat = $renderFactory->create('invalid_format'); |
24 | 24 | $this->assertFalse($invalidFormat); |
25 | - } |
|
25 | + } |
|
26 | 26 | |
27 | 27 | } |
28 | 28 |
@@ -10,17 +10,17 @@ |
||
10 | 10 | { |
11 | 11 | protected function configure() |
12 | 12 | { |
13 | - $this |
|
14 | - ->setName('testmodule:foo') |
|
15 | - ->setDescription('Test command registered in a module') |
|
16 | - ; |
|
13 | + $this |
|
14 | + ->setName('testmodule:foo') |
|
15 | + ->setDescription('Test command registered in a module') |
|
16 | + ; |
|
17 | 17 | } |
18 | 18 | |
19 | - /** |
|
20 | - * @param \Symfony\Component\Console\Input\InputInterface $input |
|
21 | - * @param \Symfony\Component\Console\Output\OutputInterface $output |
|
22 | - * @return int|void |
|
23 | - */ |
|
19 | + /** |
|
20 | + * @param \Symfony\Component\Console\Input\InputInterface $input |
|
21 | + * @param \Symfony\Component\Console\Output\OutputInterface $output |
|
22 | + * @return int|void |
|
23 | + */ |
|
24 | 24 | protected function execute(InputInterface $input, OutputInterface $output) |
25 | 25 | { |
26 | 26 | $this->detectMagento($output); |