Completed
Pull Request — master (#19)
by
unknown
01:20
created
src/Contracts/VCSCommandRunner.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -12,6 +12,7 @@  discard block
 block discarded – undo
12 12
      * @param string $source
13 13
      * @param string $branch
14 14
      * @param string $workingDirectory
15
+     * @return void
15 16
      */
16 17
     public function clone(string $source, string $branch, string $workingDirectory): void;
17 18
 
@@ -19,6 +20,7 @@  discard block
 block discarded – undo
19 20
      * @param string $workingDirectory
20 21
      *
21 22
      * @throws ProcessFailedException
23
+     * @return void
22 24
      */
23 25
     public function pull(string $workingDirectory): void;
24 26
 
Please login to merge, or discard this patch.
src/VO/Result.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -142,6 +142,7 @@
 block discarded – undo
142 142
 
143 143
     /**
144 144
      * @param string ...$messages
145
+     * @param string[] $messages
145 146
      *
146 147
      * @return self
147 148
      */
Please login to merge, or discard this patch.
src/Contracts/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.