Completed
Push — master ( d7b920...15274c )
by ARCANEDEV
7s
created
src/ColorConverter.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @param  string  $hex
30 30
      *
31
-     * @return array
31
+     * @return double[]
32 32
      */
33 33
     public static function hexToHsv($hex)
34 34
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @param  string  $hex
42 42
      *
43
-     * @return array
43
+     * @return double[]
44 44
      */
45 45
     public function fromHexToHsv($hex)
46 46
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * @param  float|int  $saturation
59 59
      * @param  float|int  $value
60 60
      *
61
-     * @return array
61
+     * @return string
62 62
      */
63 63
     public static function hsvToHex($hue, $saturation, $value)
64 64
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param  float|int  $saturation
73 73
      * @param  float|int  $value
74 74
      *
75
-     * @return array
75
+     * @return string
76 76
      */
77 77
     public function fromHsvToHex($hue, $saturation, $value)
78 78
     {
Please login to merge, or discard this patch.