@@ -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 |