Completed
Push — master ( c63af8...59ebde )
by ReliQ
01:11
created
src/Contract/Product/Finder.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 
20 20
     /**
21 21
      * Get product.
22
+     * @return null|Product
22 23
      */
23 24
     public function findProduct(string $productName): ?Product;
24 25
 }
Please login to merge, or discard this patch.
src/Contract/VCSCommandRunner.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -8,10 +8,14 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.