Completed
Push — master ( 9cf50b...2be9b1 )
by Adam
09:38 queued 07:25
created
src/Access/Curl.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param $option
53
-     * @param bool|true $value
53
+     * @param integer $value
54 54
      * @return $this
55 55
      */
56 56
     public function setOption($option, $value = true)
Please login to merge, or discard this patch.
src/Exception/InvalidRangeTypeException.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string $value
32
-     * @param array $allowedTypes
33
-     * @param $minimum
34
-     * @param $maximum
32
+     * @param string[] $allowedTypes
33
+     * @param integer $minimum
34
+     * @param integer $maximum
35 35
      */
36 36
     public function __construct($value, $allowedTypes, $minimum, $maximum)
37 37
     {
Please login to merge, or discard this patch.
src/File.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
     protected $timeout;
11 11
     protected $mustExist;
12 12
 
13
+    /**
14
+     * @param string $value
15
+     */
13 16
     public function __construct($value, $mustExist = true, $timeout = 10)
14 17
     {
15 18
         parent::__construct($value);
Please login to merge, or discard this patch.
src/Utility/Benchmark.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @param $name
83
+     * @param boolean|string $name
84 84
      */
85 85
     private static function stopMarkers($name)
86 86
     {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     public static function human($name = false)
47 47
     {
48 48
         return implode(array_map(function ($key, $value) {
49
-             return '[' . $key . ']: [' . (string) $value . "]\n";
49
+                return '[' . $key . ']: [' . (string) $value . "]\n";
50 50
         }, array_keys(self::get($name)), self::get($name)));
51 51
     }
52 52
 
Please login to merge, or discard this patch.
src/ExtendedArray/ExtendedArrayTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param  array $array
45
-     * @return array
45
+     * @return string
46 46
      */
47 47
     public function arrayToAttributeArray(array $array)
48 48
     {
Please login to merge, or discard this patch.