@@ -22,6 +22,9 @@ discard block |
||
22 | 22 | { |
23 | 23 | private $adependency; |
24 | 24 | |
25 | + /** |
|
26 | + * @param string $adependency |
|
27 | + */ |
|
25 | 28 | public function __construct($adependency) |
26 | 29 | { |
27 | 30 | $this->adependency = $adependency; |
@@ -29,7 +32,7 @@ discard block |
||
29 | 32 | |
30 | 33 | /** |
31 | 34 | * @param InputInterface $input |
32 | - * @param OutputInterface $ouput |
|
35 | + * @param OutputInterface $output |
|
33 | 36 | */ |
34 | 37 | public function execute(InputInterface $input, OutputInterface $output) |
35 | 38 | { |
@@ -40,7 +43,7 @@ discard block |
||
40 | 43 | class TestCommand implements SymfonyDiConsoleInterface |
41 | 44 | { |
42 | 45 | /** |
43 | - * @return SymfonyDiConsoleInterface |
|
46 | + * @return ACommand |
|
44 | 47 | */ |
45 | 48 | public static function getInstance() |
46 | 49 | { |
@@ -63,7 +66,7 @@ discard block |
||
63 | 66 | class TestCommandTwo implements SymfonyDiConsoleInterface |
64 | 67 | { |
65 | 68 | /** |
66 | - * @return SymfonyDiConsoleInterface |
|
69 | + * @return ACommand |
|
67 | 70 | */ |
68 | 71 | public static function getInstance() |
69 | 72 | { |
@@ -9,14 +9,14 @@ |
||
9 | 9 | */ |
10 | 10 | namespace SymfonyDiConsole\Tests; |
11 | 11 | |
12 | -use SymfonyDiConsole\SymfonyDiConsoleInterface; |
|
13 | -use SymfonyDiConsole\SymfonyConsoleInterface; |
|
14 | -use SymfonyDiConsole\SymfonyConsoleDiDto; |
|
15 | 12 | use SymfonyDiConsole\CommandBuilder; |
16 | -use Symfony\Component\Console\Input\InputInterface; |
|
13 | +use SymfonyDiConsole\SymfonyConsoleDiDto; |
|
14 | +use SymfonyDiConsole\SymfonyConsoleInterface; |
|
15 | +use SymfonyDiConsole\SymfonyDiConsoleInterface; |
|
17 | 16 | use Symfony\Component\Console\Input\ArrayInput; |
18 | -use Symfony\Component\Console\Output\OutputInterface; |
|
17 | +use Symfony\Component\Console\Input\InputInterface; |
|
19 | 18 | use Symfony\Component\Console\Output\NullOutput; |
19 | +use Symfony\Component\Console\Output\OutputInterface; |
|
20 | 20 | |
21 | 21 | class ACommand implements SymfonyConsoleInterface |
22 | 22 | { |