@@ -21,7 +21,7 @@ |
||
21 | 21 | // tests |
22 | 22 | public function testBowerInstall() |
23 | 23 | { |
24 | - $bower = test::double('Robo\Task\Bower\Install', ['executeCommand' => null, 'logger' => new \Psr\Log\NullLogger(),]); |
|
24 | + $bower = test::double('Robo\Task\Bower\Install', ['executeCommand' => null, 'logger' => new \Psr\Log\NullLogger(), ]); |
|
25 | 25 | (new \Robo\Task\Bower\Install('bower'))->run(); |
26 | 26 | $bower->verifyInvoked('executeCommand', ['bower install']); |
27 | 27 | } |
@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | $message = $argv[1]; |
4 | 4 | $iterations = $argv[2]; |
5 | -for ($i=0; $i < $iterations; ++$i) { |
|
5 | +for ($i = 0; $i < $iterations; ++$i) { |
|
6 | 6 | print "$message\n"; |
7 | 7 | sleep(1); |
8 | 8 | } |
@@ -206,7 +206,7 @@ |
||
206 | 206 | /** |
207 | 207 | * @param string $filename |
208 | 208 | * |
209 | - * @return bool|string |
|
209 | + * @return string|false |
|
210 | 210 | */ |
211 | 211 | protected static function archiveType($filename) |
212 | 212 | { |
@@ -6,7 +6,7 @@ |
||
6 | 6 | /** |
7 | 7 | * Executes shell command |
8 | 8 | * |
9 | - * @param string|\Robo\Contract\CommandInterface $command |
|
9 | + * @param string $command |
|
10 | 10 | * |
11 | 11 | * @return \Robo\Result |
12 | 12 | */ |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | protected $run = ''; |
48 | 48 | |
49 | 49 | /** |
50 | - * @param string|\Robo\Result $cidOrResult |
|
50 | + * @param string $cidOrResult |
|
51 | 51 | */ |
52 | 52 | public function __construct($cidOrResult) |
53 | 53 | { |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
76 | - * @param string|\Robo\Contract\CommandInterface $command |
|
76 | + * @param string $command |
|
77 | 77 | * |
78 | 78 | * @return $this |
79 | 79 | */ |
@@ -124,7 +124,7 @@ |
||
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
127 | - * @param string|\Robo\Contract\CommandInterface $run |
|
127 | + * @param string $run |
|
128 | 128 | * |
129 | 129 | * @return $this |
130 | 130 | */ |
@@ -90,25 +90,25 @@ |
||
90 | 90 | $this->checkResources($targets); |
91 | 91 | } |
92 | 92 | |
93 | - /** |
|
94 | - * Wrapper method around phps is_dir() |
|
95 | - * |
|
96 | - * @param string $directory |
|
97 | - * |
|
98 | - * @return bool |
|
99 | - */ |
|
93 | + /** |
|
94 | + * Wrapper method around phps is_dir() |
|
95 | + * |
|
96 | + * @param string $directory |
|
97 | + * |
|
98 | + * @return bool |
|
99 | + */ |
|
100 | 100 | protected function isDir($directory) |
101 | 101 | { |
102 | 102 | return is_dir($directory); |
103 | 103 | } |
104 | 104 | |
105 | - /** |
|
106 | - * Wrapper method around phps file_exists() |
|
107 | - * |
|
108 | - * @param string $file |
|
109 | - * |
|
110 | - * @return bool |
|
111 | - */ |
|
105 | + /** |
|
106 | + * Wrapper method around phps file_exists() |
|
107 | + * |
|
108 | + * @param string $file |
|
109 | + * |
|
110 | + * @return bool |
|
111 | + */ |
|
112 | 112 | protected function isFile($file) |
113 | 113 | { |
114 | 114 | return file_exists($file); |
@@ -48,7 +48,7 @@ |
||
48 | 48 | * @param string $type |
49 | 49 | * Allowed values: "file", "dir", "fileAndDir". |
50 | 50 | * |
51 | - * @return bool |
|
51 | + * @return boolean|null |
|
52 | 52 | */ |
53 | 53 | protected function checkResource($resource, $type) |
54 | 54 | { |
@@ -353,7 +353,7 @@ |
||
353 | 353 | } |
354 | 354 | |
355 | 355 | /** |
356 | - * @param array|string $pattern |
|
356 | + * @param string[] $pattern |
|
357 | 357 | * |
358 | 358 | * @return $this |
359 | 359 | */ |
@@ -1,7 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use AspectMock\Test as test; |
|
4 | - |
|
5 | 3 | class HgTest extends \Codeception\TestCase\Test |
6 | 4 | { |
7 | 5 | /** |