Issues (1724)

includes/lsx-customizer-colour-options.php (490 issues)

1
<?php
2
/**
3
 * Customizer colour options
4
 *
5
 * @package   LSX Customizer
6
 * @author    LightSpeed
7
 * @license   GPL3
8
 * @link
9
 * @copyright 2016 LightSpeed
10
 */
11
12
global $customizer_colour_names;
13
global $customizer_colour_choices;
14
15
$customizer_colour_names = apply_filters( 'lsx_customizer_colour_names', array(
0 ignored issues
show
The opening parenthesis of a multi-line function call should be the last content on the line.
Loading history...
For multi-line function calls, each argument should be on a separate line.

For a function calls that spawns multiple lines, the coding style suggests to split arguments to separate lines like this:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
);
Loading history...
16
	'button_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'button_background_color'" and double arrow, but found 7.
Loading history...
17
	'button_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 13 space(s) between "'button_background_hover_color'" and double arrow, but found 1.
Loading history...
18
	'button_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'button_text_color'" and double arrow, but found 13.
Loading history...
19
	'button_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'button_text_color_hover'" and double arrow, but found 7.
Loading history...
20
	'button_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 29 space(s) between "'button_shadow'" and double arrow, but found 17.
Loading history...
21
22
	'button_cta_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'button_cta_background_color'" and double arrow, but found 7.
Loading history...
23
	'button_cta_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 9 space(s) between "'button_cta_background_hover_color'" and double arrow, but found 1.
Loading history...
24
	'button_cta_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'button_cta_text_color'" and double arrow, but found 13.
Loading history...
25
	'button_cta_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'button_cta_text_color_hover'" and double arrow, but found 7.
Loading history...
26
	'button_cta_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'button_cta_shadow'" and double arrow, but found 17.
Loading history...
27
28
	'button_secondary_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 9 space(s) between "'button_secondary_background_color'" and double arrow, but found 7.
Loading history...
29
	'button_secondary_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 3 space(s) between "'button_secondary_background_hover_color'" and double arrow, but found 1.
Loading history...
30
	'button_secondary_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'button_secondary_text_color'" and double arrow, but found 13.
Loading history...
31
	'button_secondary_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 9 space(s) between "'button_secondary_text_color_hover'" and double arrow, but found 7.
Loading history...
32
	'button_secondary_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'button_secondary_shadow'" and double arrow, but found 17.
Loading history...
33
34
	'button_tertiary_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'button_tertiary_background_color'" and double arrow, but found 7.
Loading history...
35
	'button_tertiary_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 4 space(s) between "'button_tertiary_background_hover_color'" and double arrow, but found 1.
Loading history...
36
	'button_tertiary_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 16 space(s) between "'button_tertiary_text_color'" and double arrow, but found 13.
Loading history...
37
	'button_tertiary_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'button_tertiary_text_color_hover'" and double arrow, but found 7.
Loading history...
38
	'button_tertiary_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 20 space(s) between "'button_tertiary_shadow'" and double arrow, but found 17.
Loading history...
39
40
	'top_menu_background_color'          => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'top_menu_background_color'" and double arrow, but found 10.
Loading history...
41
	'top_menu_link_color'                => esc_html__( 'Link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 23 space(s) between "'top_menu_link_color'" and double arrow, but found 16.
Loading history...
42
	'top_menu_link_hover_color'          => esc_html__( 'Link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'top_menu_link_hover_color'" and double arrow, but found 10.
Loading history...
43
	'top_menu_icon_color'                => esc_html__( 'Icon', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 23 space(s) between "'top_menu_icon_color'" and double arrow, but found 16.
Loading history...
44
	'top_menu_icon_hover_color'          => esc_html__( 'Icon (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'top_menu_icon_hover_color'" and double arrow, but found 10.
Loading history...
45
	'top_menu_dropdown_color'            => esc_html__( 'Dropdown', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'top_menu_dropdown_color'" and double arrow, but found 12.
Loading history...
46
	'top_menu_dropdown_hover_color'      => esc_html__( 'Dropdown (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 13 space(s) between "'top_menu_dropdown_hover_color'" and double arrow, but found 6.
Loading history...
47
	'top_menu_dropdown_link_color'       => esc_html__( 'Dropdown link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'top_menu_dropdown_link_color'" and double arrow, but found 7.
Loading history...
48
	'top_menu_dropdown_link_hover_color' => esc_html__( 'Dropdown link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'top_menu_dropdown_link_hover_color'" and double arrow, but found 1.
Loading history...
49
50
	'header_background_color'  => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'header_background_color'" and double arrow, but found 2.
Loading history...
51
	'header_link_color'        => esc_html__( 'Link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'header_link_color'" and double arrow, but found 8.
Loading history...
52
	'header_link_hover_color'  => esc_html__( 'Link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'header_link_hover_color'" and double arrow, but found 2.
Loading history...
53
	'header_description_color' => esc_html__( 'Description', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 18 space(s) between "'header_description_color'" and double arrow, but found 1.
Loading history...
54
55
	'main_menu_background_color'                => esc_html__( 'Background', 'lsx-customizer' ),
56
	'main_menu_link_color'                      => esc_html__( 'Link', 'lsx-customizer' ),
57
	'main_menu_link_hover_color'                => esc_html__( 'Link (hover)', 'lsx-customizer' ),
58
	'main_menu_dropdown_background_color'       => esc_html__( 'Dropdown', 'lsx-customizer' ),
59
	'main_menu_dropdown_background_hover_color' => esc_html__( 'Dropdown (hover)', 'lsx-customizer' ),
60
	'main_menu_dropdown_link_color'             => esc_html__( 'Dropdown link', 'lsx-customizer' ),
61
	'main_menu_dropdown_link_hover_color'       => esc_html__( 'Dropdown link (hover)', 'lsx-customizer' ),
62
63
	'banner_background_color'               => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'banner_background_color'" and double arrow, but found 15.
Loading history...
64
	'banner_text_color'                     => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'banner_text_color'" and double arrow, but found 21.
Loading history...
65
	'banner_text_image_color'               => esc_html__( 'Text (over image)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'banner_text_image_color'" and double arrow, but found 15.
Loading history...
66
	'banner_breadcrumb_background_color'    => esc_html__( 'Breadcrumb Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'banner_breadcrumb_background_color'" and double arrow, but found 4.
Loading history...
67
	'banner_breadcrumb_text_color'          => esc_html__( 'Breadcrumb Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'banner_breadcrumb_text_color'" and double arrow, but found 10.
Loading history...
68
	'banner_breadcrumb_text_selected_color' => esc_html__( 'Breadcrumb Text (selected)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 5 space(s) between "'banner_breadcrumb_text_selected_color'" and double arrow, but found 1.
Loading history...
69
70
	'background_color'                       => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 26 space(s) between "'background_color'" and double arrow, but found 23.
Loading history...
71
	'body_line_color'                        => esc_html__( 'Line', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 27 space(s) between "'body_line_color'" and double arrow, but found 24.
Loading history...
72
	'body_text_heading_color'                => esc_html__( 'Text (heading)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'body_text_heading_color'" and double arrow, but found 16.
Loading history...
73
	'body_text_small_color'                  => esc_html__( 'Text (small)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'body_text_small_color'" and double arrow, but found 18.
Loading history...
74
	'body_text_color'                        => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 27 space(s) between "'body_text_color'" and double arrow, but found 24.
Loading history...
75
	'body_link_color'                        => esc_html__( 'Link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 27 space(s) between "'body_link_color'" and double arrow, but found 24.
Loading history...
76
	'body_link_hover_color'                  => esc_html__( 'Link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'body_link_hover_color'" and double arrow, but found 18.
Loading history...
77
	'body_section_full_background_color'     => esc_html__( 'Section full (background)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'body_section_full_background_color'" and double arrow, but found 5.
Loading history...
78
	'body_section_full_text_color'           => esc_html__( 'Section full (text)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'body_section_full_text_color'" and double arrow, but found 11.
Loading history...
79
	'body_section_full_link_color'           => esc_html__( 'Section full (link)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'body_section_full_link_color'" and double arrow, but found 11.
Loading history...
80
	'body_section_full_link_hover_color'     => esc_html__( 'Section full (link hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'body_section_full_link_hover_color'" and double arrow, but found 5.
Loading history...
81
	'body_section_full_cta_background_color' => esc_html__( 'Section full CTA (background)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 4 space(s) between "'body_section_full_cta_background_color'" and double arrow, but found 1.
Loading history...
82
	'body_section_full_cta_text_color'       => esc_html__( 'Section full CTA (text)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'body_section_full_cta_text_color'" and double arrow, but found 7.
Loading history...
83
	'body_section_full_cta_link_color'       => esc_html__( 'Section full CTA (link)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'body_section_full_cta_link_color'" and double arrow, but found 7.
Loading history...
84
	'body_section_full_cta_link_hover_color' => esc_html__( 'Section full CTA (link hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 4 space(s) between "'body_section_full_cta_link_hover_color'" and double arrow, but found 1.
Loading history...
85
86
	'footer_cta_background_color' => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'footer_cta_background_color'" and double arrow, but found 1.
Loading history...
87
	'footer_cta_text_color'       => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'footer_cta_text_color'" and double arrow, but found 7.
Loading history...
88
	'footer_cta_link_color'       => esc_html__( 'Link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'footer_cta_link_color'" and double arrow, but found 7.
Loading history...
89
	'footer_cta_link_hover_color' => esc_html__( 'Link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'footer_cta_link_hover_color'" and double arrow, but found 1.
Loading history...
90
91
	'footer_widgets_background_color' => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 11 space(s) between "'footer_widgets_background_color'" and double arrow, but found 1.
Loading history...
92
	'footer_widgets_text_color'       => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'footer_widgets_text_color'" and double arrow, but found 7.
Loading history...
93
	'footer_widgets_link_color'       => esc_html__( 'Link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'footer_widgets_link_color'" and double arrow, but found 7.
Loading history...
94
	'footer_widgets_link_hover_color' => esc_html__( 'Link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 11 space(s) between "'footer_widgets_link_hover_color'" and double arrow, but found 1.
Loading history...
95
96
	'footer_background_color' => esc_html__( 'Background', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'footer_background_color'" and double arrow, but found 1.
Loading history...
97
	'footer_text_color'       => esc_html__( 'Text', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'footer_text_color'" and double arrow, but found 7.
Loading history...
98
	'footer_link_color'       => esc_html__( 'Link', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'footer_link_color'" and double arrow, but found 7.
Loading history...
99
	'footer_link_hover_color' => esc_html__( 'Link (hover)', 'lsx-customizer' ),
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'footer_link_hover_color'" and double arrow, but found 1.
Loading history...
100
) );
0 ignored issues
show
For multi-line function calls, the closing parenthesis should be on a new line.

If a function call spawns multiple lines, the coding standard suggests to move the closing parenthesis to a new line:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
); // Closing parenthesis on a new line.
Loading history...
101
102
$customizer_colour_choices = apply_filters( 'lsx_customizer_colour_choices', array(
0 ignored issues
show
The opening parenthesis of a multi-line function call should be the last content on the line.
Loading history...
For multi-line function calls, each argument should be on a separate line.

For a function calls that spawns multiple lines, the coding style suggests to split arguments to separate lines like this:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
);
Loading history...
103
	'default' => array(
104
		'label'  => __( 'Default', 'lsx-customizer' ),
105
		'colors' => apply_filters( 'lsx_customizer_colour_choices_default', array(
0 ignored issues
show
The opening parenthesis of a multi-line function call should be the last content on the line.
Loading history...
For multi-line function calls, each argument should be on a separate line.

For a function calls that spawns multiple lines, the coding style suggests to split arguments to separate lines like this:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
);
Loading history...
106
			'button_background_color'       => '#418AD0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'button_background_color'" and double arrow, but found 7.
Loading history...
107
			'button_background_hover_color' => '#367DC0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 13 space(s) between "'button_background_hover_color'" and double arrow, but found 1.
Loading history...
108
			'button_text_color'             => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'button_text_color'" and double arrow, but found 13.
Loading history...
109
			'button_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'button_text_color_hover'" and double arrow, but found 7.
Loading history...
110
			'button_shadow'                 => '#27639E',
0 ignored issues
show
Array double arrow not aligned correctly; expected 29 space(s) between "'button_shadow'" and double arrow, but found 17.
Loading history...
111
112
			'button_cta_background_color'       => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'button_cta_background_color'" and double arrow, but found 7.
Loading history...
113
			'button_cta_background_hover_color' => '#EDA700',
0 ignored issues
show
Array double arrow not aligned correctly; expected 9 space(s) between "'button_cta_background_hover_color'" and double arrow, but found 1.
Loading history...
114
			'button_cta_text_color'             => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'button_cta_text_color'" and double arrow, but found 13.
Loading history...
115
			'button_cta_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'button_cta_text_color_hover'" and double arrow, but found 7.
Loading history...
116
			'button_cta_shadow'                 => '#AB7800',
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'button_cta_shadow'" and double arrow, but found 17.
Loading history...
117
118
			'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Array double arrow not aligned correctly; expected 9 space(s) between "'button_secondary_background_color'" and double arrow, but found 7.
Loading history...
119
			'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Array double arrow not aligned correctly; expected 3 space(s) between "'button_secondary_background_hover_color'" and double arrow, but found 1.
Loading history...
120
			'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'button_secondary_text_color'" and double arrow, but found 13.
Loading history...
121
			'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 9 space(s) between "'button_secondary_text_color_hover'" and double arrow, but found 7.
Loading history...
122
			'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'button_secondary_shadow'" and double arrow, but found 17.
Loading history...
123
124
			'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'button_tertiary_background_color'" and double arrow, but found 7.
Loading history...
125
			'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Array double arrow not aligned correctly; expected 4 space(s) between "'button_tertiary_background_hover_color'" and double arrow, but found 1.
Loading history...
126
			'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 16 space(s) between "'button_tertiary_text_color'" and double arrow, but found 13.
Loading history...
127
			'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'button_tertiary_text_color_hover'" and double arrow, but found 7.
Loading history...
128
			'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Array double arrow not aligned correctly; expected 20 space(s) between "'button_tertiary_shadow'" and double arrow, but found 17.
Loading history...
129
130
			'top_menu_background_color'          => '#333333',
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'top_menu_background_color'" and double arrow, but found 10.
Loading history...
131
			'top_menu_link_color'                => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 23 space(s) between "'top_menu_link_color'" and double arrow, but found 16.
Loading history...
132
			'top_menu_link_hover_color'          => '#D93A3A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'top_menu_link_hover_color'" and double arrow, but found 10.
Loading history...
133
			'top_menu_icon_color'                => '#D93A3A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 23 space(s) between "'top_menu_icon_color'" and double arrow, but found 16.
Loading history...
134
			'top_menu_icon_hover_color'          => '#D93A3A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'top_menu_icon_hover_color'" and double arrow, but found 10.
Loading history...
135
			'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'top_menu_dropdown_color'" and double arrow, but found 12.
Loading history...
136
			'top_menu_dropdown_hover_color'      => '#333333',
0 ignored issues
show
Array double arrow not aligned correctly; expected 13 space(s) between "'top_menu_dropdown_hover_color'" and double arrow, but found 6.
Loading history...
137
			'top_menu_dropdown_link_color'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'top_menu_dropdown_link_color'" and double arrow, but found 7.
Loading history...
138
			'top_menu_dropdown_link_hover_color' => '#D93A3A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'top_menu_dropdown_link_hover_color'" and double arrow, but found 1.
Loading history...
139
140
			'header_background_color'  => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'header_background_color'" and double arrow, but found 2.
Loading history...
141
			'header_link_color'        => '#D84E2E',
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'header_link_color'" and double arrow, but found 8.
Loading history...
142
			'header_link_hover_color'  => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'header_link_hover_color'" and double arrow, but found 2.
Loading history...
143
			'header_description_color' => '#434343',
0 ignored issues
show
Array double arrow not aligned correctly; expected 18 space(s) between "'header_description_color'" and double arrow, but found 1.
Loading history...
144
145
			'main_menu_background_color'                => '#FFFFFF',
146
			'main_menu_link_color'                      => '#515151',
147
			'main_menu_link_hover_color'                => '#418AD0',
148
			'main_menu_dropdown_background_color'       => '#374750',
149
			'main_menu_dropdown_background_hover_color' => '#2B3840',
150
			'main_menu_dropdown_link_color'             => '#FFFFFF',
151
			'main_menu_dropdown_link_hover_color'       => '#418AD0',
152
153
			'banner_background_color'               => '#2B3840',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'banner_background_color'" and double arrow, but found 15.
Loading history...
154
			'banner_text_color'                     => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'banner_text_color'" and double arrow, but found 21.
Loading history...
155
			'banner_text_image_color'               => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'banner_text_image_color'" and double arrow, but found 15.
Loading history...
156
			'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'banner_breadcrumb_background_color'" and double arrow, but found 4.
Loading history...
157
			'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'banner_breadcrumb_text_color'" and double arrow, but found 10.
Loading history...
158
			'banner_breadcrumb_text_selected_color' => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 5 space(s) between "'banner_breadcrumb_text_selected_color'" and double arrow, but found 1.
Loading history...
159
160
			'background_color'                       => '#F6F6F6',
0 ignored issues
show
Array double arrow not aligned correctly; expected 26 space(s) between "'background_color'" and double arrow, but found 23.
Loading history...
161
			'body_line_color'                        => '#DADDDF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 27 space(s) between "'body_line_color'" and double arrow, but found 24.
Loading history...
162
			'body_text_heading_color'                => '#4A4A4A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'body_text_heading_color'" and double arrow, but found 16.
Loading history...
163
			'body_text_small_color'                  => '#919191',
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'body_text_small_color'" and double arrow, but found 18.
Loading history...
164
			'body_text_color'                        => '#4A4A4A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 27 space(s) between "'body_text_color'" and double arrow, but found 24.
Loading history...
165
			'body_link_color'                        => '#418AD0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 27 space(s) between "'body_link_color'" and double arrow, but found 24.
Loading history...
166
			'body_link_hover_color'                  => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'body_link_hover_color'" and double arrow, but found 18.
Loading history...
167
			'body_section_full_background_color'     => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'body_section_full_background_color'" and double arrow, but found 5.
Loading history...
168
			'body_section_full_text_color'           => '#4A4A4A',
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'body_section_full_text_color'" and double arrow, but found 11.
Loading history...
169
			'body_section_full_link_color'           => '#418AD0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 14 space(s) between "'body_section_full_link_color'" and double arrow, but found 11.
Loading history...
170
			'body_section_full_link_hover_color'     => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 8 space(s) between "'body_section_full_link_hover_color'" and double arrow, but found 5.
Loading history...
171
			'body_section_full_cta_background_color' => '#418AD0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 4 space(s) between "'body_section_full_cta_background_color'" and double arrow, but found 1.
Loading history...
172
			'body_section_full_cta_text_color'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'body_section_full_cta_text_color'" and double arrow, but found 7.
Loading history...
173
			'body_section_full_cta_link_color'       => '#374750',
0 ignored issues
show
Array double arrow not aligned correctly; expected 10 space(s) between "'body_section_full_cta_link_color'" and double arrow, but found 7.
Loading history...
174
			'body_section_full_cta_link_hover_color' => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 4 space(s) between "'body_section_full_cta_link_hover_color'" and double arrow, but found 1.
Loading history...
175
176
			'footer_cta_background_color' => '#2B3840',
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'footer_cta_background_color'" and double arrow, but found 1.
Loading history...
177
			'footer_cta_text_color'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'footer_cta_text_color'" and double arrow, but found 7.
Loading history...
178
			'footer_cta_link_color'       => '#418AD0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 21 space(s) between "'footer_cta_link_color'" and double arrow, but found 7.
Loading history...
179
			'footer_cta_link_hover_color' => '#367DC0',
0 ignored issues
show
Array double arrow not aligned correctly; expected 15 space(s) between "'footer_cta_link_hover_color'" and double arrow, but found 1.
Loading history...
180
181
			'footer_widgets_background_color' => '#374750',
0 ignored issues
show
Array double arrow not aligned correctly; expected 11 space(s) between "'footer_widgets_background_color'" and double arrow, but found 1.
Loading history...
182
			'footer_widgets_text_color'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'footer_widgets_text_color'" and double arrow, but found 7.
Loading history...
183
			'footer_widgets_link_color'       => '#FFFFFF',
0 ignored issues
show
Array double arrow not aligned correctly; expected 17 space(s) between "'footer_widgets_link_color'" and double arrow, but found 7.
Loading history...
184
			'footer_widgets_link_hover_color' => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 11 space(s) between "'footer_widgets_link_hover_color'" and double arrow, but found 1.
Loading history...
185
186
			'footer_background_color' => '#2B3840',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'footer_background_color'" and double arrow, but found 1.
Loading history...
187
			'footer_text_color'       => '#ffffff',
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'footer_text_color'" and double arrow, but found 7.
Loading history...
188
			'footer_link_color'       => '#F7AE00',
0 ignored issues
show
Array double arrow not aligned correctly; expected 25 space(s) between "'footer_link_color'" and double arrow, but found 7.
Loading history...
189
			'footer_link_hover_color' => '#CE9100',
0 ignored issues
show
Array double arrow not aligned correctly; expected 19 space(s) between "'footer_link_hover_color'" and double arrow, but found 1.
Loading history...
190
		) ),
0 ignored issues
show
For multi-line function calls, the closing parenthesis should be on a new line.

If a function call spawns multiple lines, the coding standard suggests to move the closing parenthesis to a new line:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
); // Closing parenthesis on a new line.
Loading history...
191
	),
192
	// 'red' => array(
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
193
	// 	'label'  => __( 'Red', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
194
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_red', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
195
	// 		'button_background_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
196
	// 		'button_background_hover_color' => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
197
	// 		'button_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
198
	// 		'button_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
199
	// 		'button_shadow'                 => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
200
201
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
202
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
203
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
204
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
205
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
206
207
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
208
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
209
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
210
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
211
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
212
213
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
214
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
215
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
216
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
217
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
218
219
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
220
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
221
	// 		'top_menu_link_hover_color'          => '#eaa520',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
222
	// 		'top_menu_icon_color'                => '#eaa520',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
223
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
224
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
225
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
226
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
227
	// 		'top_menu_dropdown_link_hover_color' => '#eaa520',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
228
229
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
230
	// 		'header_link_color'        => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
231
	// 		'header_link_hover_color'  => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
232
	// 		'header_description_color' => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
233
234
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
235
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
236
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
237
	// 		'main_menu_dropdown_background_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
238
	// 		'main_menu_dropdown_background_hover_color' => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
239
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
240
	// 		'main_menu_dropdown_link_hover_color'       => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
241
242
	// 		'banner_background_color'               => '#87291c',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
243
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
244
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
245
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
246
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
247
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
248
249
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
250
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
251
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
252
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
253
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
254
	// 		'body_link_color'                        => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
255
	// 		'body_link_hover_color'                  => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
256
	// 		'body_section_full_background_color'     => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
257
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
258
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
259
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
260
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
261
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
262
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
263
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
264
265
	// 		'footer_cta_background_color' => '#b64d3f',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
266
	// 		'footer_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
267
	// 		'footer_cta_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
268
	// 		'footer_cta_link_hover_color' => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
269
270
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
271
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
272
	// 		'footer_widgets_link_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
273
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
274
275
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
276
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
277
	// 		'footer_link_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
278
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
279
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
280
	// ),
281
	// 'orange' => array(
282
	// 	'label'  => __( 'Orange', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
283
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_orange', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
284
	// 		'button_background_color'       => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
285
	// 		'button_background_hover_color' => '#e49435',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
286
	// 		'button_text_color'             => '#260e03',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
287
	// 		'button_text_color_hover'       => '#260e03',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
288
	// 		'button_shadow'                 => '#e49435',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
289
290
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
291
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
292
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
293
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
294
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
295
296
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
297
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
298
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
299
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
300
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
301
302
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
303
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
304
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
305
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
306
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
307
308
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
309
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
310
	// 		'top_menu_link_hover_color'          => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
311
	// 		'top_menu_icon_color'                => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
312
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
313
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
314
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
315
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
316
	// 		'top_menu_dropdown_link_hover_color' => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
317
318
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
319
	// 		'header_link_color'        => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
320
	// 		'header_link_hover_color'  => '#cc4800',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
321
	// 		'header_description_color' => '#777777',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
322
323
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
324
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
325
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
326
	// 		'main_menu_dropdown_background_color'       => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
327
	// 		'main_menu_dropdown_background_hover_color' => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
328
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
329
	// 		'main_menu_dropdown_link_hover_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
330
331
	// 		'banner_background_color'               => '#e49435',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
332
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
333
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
334
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
335
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
336
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
337
338
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
339
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
340
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
341
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
342
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
343
	// 		'body_link_color'                        => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
344
	// 		'body_link_hover_color'                  => '#cc4800',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
345
	// 		'body_section_full_background_color'     => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
346
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
347
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
348
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
349
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
350
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
351
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
352
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
353
354
	// 		'footer_cta_background_color' => '#fbaf3f',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
355
	// 		'footer_cta_text_color'       => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
356
	// 		'footer_cta_link_color'       => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
357
	// 		'footer_cta_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
358
359
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
360
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
361
	// 		'footer_widgets_link_color'       => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
362
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
363
364
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
365
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
366
	// 		'footer_link_color'       => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
367
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
368
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
369
	// ),
370
	// 'green' => array(
371
	// 	'label'  => __( 'Green', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
372
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_green', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
373
	// 		'button_background_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
374
	// 		'button_background_hover_color' => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
375
	// 		'button_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
376
	// 		'button_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
377
	// 		'button_shadow'                 => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
378
379
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
380
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
381
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
382
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
383
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
384
385
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
386
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
387
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
388
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
389
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
390
391
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
392
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
393
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
394
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
395
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
396
397
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
398
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
399
	// 		'top_menu_link_hover_color'          => '#a5a370',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
400
	// 		'top_menu_icon_color'                => '#a5a370',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
401
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
402
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
403
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
404
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
405
	// 		'top_menu_dropdown_link_hover_color' => '#a5a370',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
406
407
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
408
	// 		'header_link_color'        => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
409
	// 		'header_link_hover_color'  => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
410
	// 		'header_description_color' => '#777777',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
411
412
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
413
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
414
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
415
	// 		'main_menu_dropdown_background_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
416
	// 		'main_menu_dropdown_background_hover_color' => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
417
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
418
	// 		'main_menu_dropdown_link_hover_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
419
420
	// 		'banner_background_color'               => '#3d4a30',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
421
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
422
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
423
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
424
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
425
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
426
427
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
428
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
429
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
430
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
431
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
432
	// 		'body_link_color'                        => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
433
	// 		'body_link_hover_color'                  => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
434
	// 		'body_section_full_background_color'     => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
435
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
436
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
437
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
438
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
439
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
440
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
441
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
442
443
	// 		'footer_cta_background_color' => '#596b46',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
444
	// 		'footer_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
445
	// 		'footer_cta_link_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
446
	// 		'footer_cta_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
447
448
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
449
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
450
	// 		'footer_widgets_link_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
451
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
452
453
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
454
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
455
	// 		'footer_link_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
456
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
457
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
458
	// ),
459
	// 'brown' => array(
460
	// 	'label'  => __( 'Brown', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
461
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_brown', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
462
	// 		'button_background_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
463
	// 		'button_background_hover_color' => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
464
	// 		'button_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
465
	// 		'button_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
466
	// 		'button_shadow'                 => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
467
468
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
469
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
470
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
471
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
472
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
473
474
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
475
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
476
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
477
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
478
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
479
480
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
481
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
482
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
483
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
484
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
485
486
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
487
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
488
	// 		'top_menu_link_hover_color'          => '#dfad55',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
489
	// 		'top_menu_icon_color'                => '#dfad55',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
490
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
491
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
492
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
493
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
494
	// 		'top_menu_dropdown_link_hover_color' => '#dfad55',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
495
496
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
497
	// 		'header_link_color'        => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
498
	// 		'header_link_hover_color'  => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
499
	// 		'header_description_color' => '#777777',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
500
501
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
502
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
503
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
504
	// 		'main_menu_dropdown_background_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
505
	// 		'main_menu_dropdown_background_hover_color' => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
506
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
507
	// 		'main_menu_dropdown_link_hover_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
508
509
	// 		'banner_background_color'               => '#5b452e',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
510
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
511
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
512
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
513
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
514
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
515
516
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
517
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
518
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
519
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
520
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
521
	// 		'body_link_color'                        => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
522
	// 		'body_link_hover_color'                  => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
523
	// 		'body_section_full_background_color'     => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
524
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
525
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
526
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
527
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
528
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
529
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
530
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
531
532
	// 		'footer_cta_background_color' => '#8c6a45',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
533
	// 		'footer_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
534
	// 		'footer_cta_link_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
535
	// 		'footer_cta_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
536
537
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
538
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
539
	// 		'footer_widgets_link_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
540
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
541
542
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
543
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
544
	// 		'footer_link_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
545
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
546
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
547
	// ),
548
) );
0 ignored issues
show
For multi-line function calls, the closing parenthesis should be on a new line.

If a function call spawns multiple lines, the coding standard suggests to move the closing parenthesis to a new line:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
); // Closing parenthesis on a new line.
Loading history...
549