Completed
Push — master ( 279d2c...857202 )
by Harry
03:11
created
tests/src/FileTestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Delete the folder and all files/folders within it
43 43
      *
44
-     * @param $path
44
+     * @param string $path
45 45
      *
46 46
      * @return bool
47 47
      */
Please login to merge, or discard this patch.
tests/integration/Modify/HeadTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Delete the folder and all files/folders within it
43 43
      *
44
-     * @param $path
44
+     * @param string $path
45 45
      *
46 46
      * @return bool
47 47
      */
Please login to merge, or discard this patch.
tests/integration/Modify/TailTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Delete the folder and all files/folders within it
43 43
      *
44
-     * @param $path
44
+     * @param string $path
45 45
      *
46 46
      * @return bool
47 47
      */
Please login to merge, or discard this patch.
src/Helper/Process/ProcessTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      *                                    process
44 44
      * @param array|null     $env         The environment variables or null to inherit
45 45
      * @param string|null    $input       The input
46
-     * @param int|float|null $timeout     The timeout in seconds or null to disable
46
+     * @param integer $timeout     The timeout in seconds or null to disable
47 47
      * @param array          $options     An array of options for proc_open
48 48
      *
49 49
      * @return Process
Please login to merge, or discard this patch.
src/Modify/Compress/CompressionType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     const UNKNOWN = 'unknown';
11 11
 
12 12
     /**
13
-     * @return array
13
+     * @return string[]
14 14
      */
15 15
     public static function getCompressionTypes()
16 16
     {
Please login to merge, or discard this patch.
src/Node/FileNodeInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     }
21 21
 
22 22
     /**
23
-     * @return mixed
23
+     * @return string
24 24
      */
25 25
     public function getDirectory()
26 26
     {
Please login to merge, or discard this patch.