@@ -91,6 +91,9 @@ |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | |
94 | + /** |
|
95 | + * @param string $textDomain |
|
96 | + */ |
|
94 | 97 | protected function translatePart($translate, $result, $textDomain, $locale) |
95 | 98 | { |
96 | 99 | $newResult = parent::translate($result, $textDomain, $locale); |
@@ -4,14 +4,9 @@ |
||
4 | 4 | |
5 | 5 | use Guzzle\Http\Client; |
6 | 6 | use Magium\Cli\Command\Test\TestSkeleton; |
7 | -use Magium\InvalidConfigurationException; |
|
8 | -use Magium\NotFoundException; |
|
9 | 7 | use Magium\Util\Api\ApiConfiguration; |
10 | 8 | use Symfony\Component\Console\Command\Command; |
11 | -use Symfony\Component\Console\Input\ArrayInput; |
|
12 | -use Symfony\Component\Console\Input\InputArgument; |
|
13 | 9 | use Symfony\Component\Console\Input\InputInterface; |
14 | -use Symfony\Component\Console\Input\InputOption; |
|
15 | 10 | use Symfony\Component\Console\Output\OutputInterface; |
16 | 11 | |
17 | 12 | class ApiPing extends Command |
@@ -25,6 +25,9 @@ |
||
25 | 25 | protected $testCaseConfigurationObject; |
26 | 26 | protected $testCaseConfiguration; |
27 | 27 | |
28 | + /** |
|
29 | + * @param string $testCaseConfigurationType |
|
30 | + */ |
|
28 | 31 | public function __construct( |
29 | 32 | $testCaseConfigurationType, |
30 | 33 | TestCaseConfiguration $object = null |