1212use MischiefCollective \ColorJizz \Formats \HSV ;
1313use MischiefCollective \ColorJizz \Formats \CIELCh ;
1414use MischiefCollective \ColorJizz \Formats \RGB ;
15- use MischiefCollective \ColorJizz \Formats \Hex ;
1615
1716/**
1817 * ColorJizz is the base class that all color objects extend
@@ -28,70 +27,70 @@ abstract class ColorJizz
2827 /**
2928 * Convert the color to Hex format
3029 *
31- * @return MischiefCollective\ColorJizz\Formats\Hex the color in Hex format
30+ * @return \ MischiefCollective\ColorJizz\Formats\Hex the color in Hex format
3231 */
3332 abstract public function toHex ();
3433
3534 /**
3635 * Convert the color to RGB format
3736 *
38- * @return MischiefCollective\ColorJizz\Formats\RGB the color in RGB format
37+ * @return \ MischiefCollective\ColorJizz\Formats\RGB the color in RGB format
3938 */
4039 abstract public function toRGB ();
4140
4241 /**
4342 * Convert the color to XYZ format
4443 *
45- * @return MischiefCollective\ColorJizz\Formats\XYZ the color in XYZ format
44+ * @return \ MischiefCollective\ColorJizz\Formats\XYZ the color in XYZ format
4645 */
4746 abstract public function toXYZ ();
4847
4948 /**
5049 * Convert the color to Yxy format
5150 *
52- * @return MischiefCollective\ColorJizz\Formats\Yxy the color in Yxy format
51+ * @return \ MischiefCollective\ColorJizz\Formats\Yxy the color in Yxy format
5352 */
5453 abstract public function toYxy ();
5554
5655 /**
5756 * Convert the color to CIELab format
5857 *
59- * @return MischiefCollective\ColorJizz\Formats\CIELab the color in CIELab format
58+ * @return \ MischiefCollective\ColorJizz\Formats\CIELab the color in CIELab format
6059 */
6160 abstract public function toCIELab ();
6261
6362 /**
6463 * Convert the color to CIELCh format
6564 *
66- * @return MischiefCollective\ColorJizz\Formats\CIELCh the color in CIELCh format
65+ * @return \ MischiefCollective\ColorJizz\Formats\CIELCh the color in CIELCh format
6766 */
6867 abstract public function toCIELCh ();
6968
7069 /**
7170 * Convert the color to CMY format
7271 *
73- * @return MischiefCollective\ColorJizz\Formats\CMY the color in CMY format
72+ * @return \ MischiefCollective\ColorJizz\Formats\CMY the color in CMY format
7473 */
7574 abstract public function toCMY ();
7675
7776 /**
7877 * Convert the color to CMYK format
7978 *
80- * @return MischiefCollective\ColorJizz\Formats\CMYK the color in CMYK format
79+ * @return \ MischiefCollective\ColorJizz\Formats\CMYK the color in CMYK format
8180 */
8281 abstract public function toCMYK ();
8382
8483 /**
8584 * Convert the color to HSV format
8685 *
87- * @return MischiefCollective\ColorJizz\Formats\HSV the color in HSV format
86+ * @return \ MischiefCollective\ColorJizz\Formats\HSV the color in HSV format
8887 */
8988 abstract public function toHSV ();
9089
9190 /**
9291 * Find the distance to the destination color
9392 *
94- * @param MischiefCollective\ColorJizz\ColorJizz $destinationColor The destination color
93+ * @param \ MischiefCollective\ColorJizz\ColorJizz $destinationColor The destination color
9594 *
9695 * @return int distance to destination color
9796 */
@@ -110,7 +109,7 @@ public function distance(ColorJizz $destinationColor)
110109 /**
111110 * Find the closest websafe color
112111 *
113- * @return MischiefCollective\ColorJizz\ColorJizz The closest color
112+ * @return \ MischiefCollective\ColorJizz\ColorJizz The closest color
114113 */
115114 public function websafe ()
116115 {
@@ -130,7 +129,7 @@ public function websafe()
130129 *
131130 * @param array $palette An array of ColorJizz objects to match against
132131 *
133- * @return MischiefCollective\ColorJizz\ColorJizz The closest color
132+ * @return \ MischiefCollective\ColorJizz\ColorJizz The closest color
134133 */
135134 public function match (array $ palette )
136135 {
@@ -178,7 +177,7 @@ public function split($includeSelf = false)
178177 /**
179178 * Return the opposite, complimentary color
180179 *
181- * @return MischiefCollective\ColorJizz\ColorJizz The greyscale color
180+ * @return \ MischiefCollective\ColorJizz\ColorJizz The greyscale color
182181 */
183182 public function complement ()
184183 {
@@ -190,7 +189,7 @@ public function complement()
190189 *
191190 * @param int $includeSelf Include the current color in the return array
192191 *
193- * @return MischiefCollective\ColorJizz\ColorJizz[] Array of complimentary colors
192+ * @return \ MischiefCollective\ColorJizz\ColorJizz[] Array of complimentary colors
194193 */
195194 public function sweetspot ($ includeSelf = false )
196195 {
@@ -247,7 +246,7 @@ public function rectangle($sideLength, $includeSelf = false)
247246 return $ rtn ;
248247 }
249248
250- public function range ($ destinationColor , $ steps , $ includeSelf = false )
249+ public function range (ColorJizz $ destinationColor , $ steps , $ includeSelf = false )
251250 {
252251 $ a = $ this ->toRGB ();
253252 $ b = $ destinationColor ->toRGB ();
@@ -270,7 +269,7 @@ public function range($destinationColor, $steps, $includeSelf = false)
270269 /**
271270 * Return a greyscale version of the current color
272271 *
273- * @return MischiefCollective\ColorJizz\ColorJizz The greyscale color
272+ * @return \ MischiefCollective\ColorJizz\ColorJizz The greyscale color
274273 */
275274 public function greyscale ()
276275 {
@@ -286,7 +285,7 @@ public function greyscale()
286285 * @param int $degreeModifier Degrees to modify by
287286 * @param bool $absolute If TRUE set absolute value
288287 *
289- * @return MischiefCollective\ColorJizz\ColorJizz The modified color
288+ * @return \ MischiefCollective\ColorJizz\ColorJizz The modified color
290289 */
291290 public function hue ($ degreeModifier , $ absolute = FALSE )
292291 {
@@ -302,7 +301,7 @@ public function hue($degreeModifier, $absolute = FALSE)
302301 * @param int $satModifier Value to modify by
303302 * @param bool $absolute If TRUE set absolute value
304303 *
305- * @return MischiefCollective\ColorJizz\ColorJizz The modified color
304+ * @return \ MischiefCollective\ColorJizz\ColorJizz The modified color
306305 */
307306 public function saturation ($ satModifier , $ absolute = FALSE )
308307 {
@@ -318,7 +317,7 @@ public function saturation($satModifier, $absolute = FALSE)
318317 * @param int $brightnessModifier Value to modify by
319318 * @param bool $absolute If TRUE set absolute value
320319 *
321- * @return MischiefCollective\ColorJizz\ColorJizz The modified color
320+ * @return \ MischiefCollective\ColorJizz\ColorJizz The modified color
322321 */
323322 public function brightness ($ brightnessModifier , $ absolute = FALSE )
324323 {
0 commit comments