Completed
Push — master ( c63af8...59ebde )
by ReliQ
01:11
created
src/Contract/Filesystem.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
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.