@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @param string $path |
103 | 103 | * @param int $mode |
104 | 104 | * |
105 | - * @return mixed |
|
105 | + * @return boolean|string |
|
106 | 106 | */ |
107 | 107 | public function chmod($path, $mode = null); |
108 | 108 | |
@@ -140,6 +140,7 @@ discard block |
||
140 | 140 | * |
141 | 141 | * @param string $target |
142 | 142 | * @param string $link |
143 | + * @return boolean|null |
|
143 | 144 | */ |
144 | 145 | public function link($target, $link); |
145 | 146 |
@@ -19,6 +19,7 @@ |
||
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Get product. |
22 | + * @return null|Product |
|
22 | 23 | */ |
23 | 24 | public function findProduct(string $productName): ?Product; |
24 | 25 | } |
@@ -8,10 +8,14 @@ |
||
8 | 8 | |
9 | 9 | interface VCSCommandRunner |
10 | 10 | { |
11 | + /** |
|
12 | + * @return void |
|
13 | + */ |
|
11 | 14 | public function clone(string $source, string $branch, string $workingDirectory): void; |
12 | 15 | |
13 | 16 | /** |
14 | 17 | * @throws ProcessFailedException |
18 | + * @return void |
|
15 | 19 | */ |
16 | 20 | public function pull(string $workingDirectory): void; |
17 | 21 |