Completed
Branch master (a69c65)
by Greg
04:32
created
src/Task/Archive/Extract.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -118,6 +118,10 @@
 block discarded – undo
118 118
         return $result;
119 119
     }
120 120
 
121
+    /**
122
+     * @param string $mimetype
123
+     * @param string $extractLocation
124
+     */
121 125
     protected function extractAppropriateType($mimetype, $extractLocation)
122 126
     {
123 127
         // Perform the extraction of a zip file.
Please login to merge, or discard this patch.
src/Task/Assets/ImageMinify.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -447,6 +447,9 @@
 block discarded – undo
447 447
         return $exec->inflect($this)->printed(false)->run();
448 448
     }
449 449
 
450
+    /**
451
+     * @param string $executable
452
+     */
450 453
     protected function installFromImagemin($executable)
451 454
     {
452 455
         // check if there is an url defined for the executable
Please login to merge, or discard this patch.
src/Task/Base/loadShortcuts.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
     /**
7 7
      * Executes shell command
8 8
      *
9
-     * @param $command
9
+     * @param string $command
10 10
      * @return \Robo\Result
11 11
      */
12 12
     protected function _exec($command)
Please login to merge, or discard this patch.
src/Task/Base/loadTasks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 trait loadTasks
5 5
 {
6 6
     /**
7
-     * @param $command
7
+     * @param string $command
8 8
      * @return Exec
9 9
      */
10 10
     protected function taskExec($command)
Please login to merge, or discard this patch.
src/Task/Development/loadTasks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @param string|array $url
70
+     * @param string[] $url
71 71
      * @return OpenBrowser
72 72
      */
73 73
     protected function taskOpenBrowser($url)
Please login to merge, or discard this patch.
src/Task/Development/PackPhar.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
 
165 165
     /**
166 166
      * Strips whitespace from source. Taken from composer
167
-     * @param $source
167
+     * @param string $source
168 168
      * @return string
169 169
      */
170 170
     private function stripWhitespace($source)
Please login to merge, or discard this patch.
src/Task/Development/PhpServer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@
 block discarded – undo
46 46
         return $this;
47 47
     }
48 48
 
49
+    /**
50
+     * @param string $path
51
+     */
49 52
     public function dir($path)
50 53
     {
51 54
         $this->command .= "-t $path";
Please login to merge, or discard this patch.
src/Task/File/Write.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -249,6 +249,9 @@
 block discarded – undo
249 249
         return Result::success($this);
250 250
     }
251 251
 
252
+    /**
253
+     * @return string
254
+     */
252 255
     public function getPath()
253 256
     {
254 257
         return $this->filename;
Please login to merge, or discard this patch.
src/Task/Filesystem/loadTasks.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     }
16 16
 
17 17
     /**
18
-     * @param $dirs
18
+     * @param string $dirs
19 19
      * @return DeleteDir
20 20
      */
21 21
     protected function taskDeleteDir($dirs)
Please login to merge, or discard this patch.