Issues (1724)

includes/lsx-customizer-colour-deprecated.php (1 issue)

1
<?php
2
/**
3
 * Deprecated functions
4
 *
5
 * @package   LSX Customizer
6
 * @author    LightSpeed
7
 * @license   GPL3
8
 * @link
9
 * @copyright 2016 LightSpeed
10
 */
11
12
/**
0 ignored issues
show
Coding Style Documentation introduced by
Doc comment for parameter "$color" missing
Loading history...
13
 * Converts a HEX value to RGB.
14
 */
15
function lsx_customizer_colour__hex2rgb( $color ) {
16
	return LSX_Customizer_Colour::hex2rgb( $color );
17
}
18