@@ -31,31 +31,31 @@ class Customer_Loyalty_Public {
31
31
*
32
32
* @since 1.0.0
33
33
* @access private
34
- * @var string $_plugin_name - The ID of this plugin.
34
+ * @var string $plugin_name - The ID of this plugin.
35
35
*/
36
- private $ _plugin_name ;
36
+ private $ plugin_name ;
37
37
38
38
/**
39
39
* The version of this plugin.
40
40
*
41
41
* @since 1.0.0
42
42
* @access private
43
- * @var string $_version - The current version of this plugin.
43
+ * @var string $version - The current version of this plugin.
44
44
*/
45
- private $ _version ;
45
+ private $ version ;
46
46
47
47
/**
48
48
* Initialize the class and set its properties.
49
49
*
50
- * @param string $_plugin_name - The name of the plugin.
51
- * @param string $_version - The version of this plugin.
50
+ * @param string $plugin_name - The name of the plugin.
51
+ * @param string $version - The version of this plugin.
52
52
*
53
53
* @since 1.0.0
54
54
*/
55
- public function __construct ( $ _plugin_name , $ _version ) {
55
+ public function __construct ( $ plugin_name , $ version ) {
56
56
57
- $ this ->plugin_name = $ _plugin_name ;
58
- $ this ->version = $ _version ;
57
+ $ this ->plugin_name = $ plugin_name ;
58
+ $ this ->version = $ version ;
59
59
60
60
}
61
61
@@ -66,7 +66,7 @@ public function __construct( $_plugin_name, $_version ) {
66
66
* @return void
67
67
*/
68
68
public function enqueue_styles () {
69
- wp_enqueue_style ( $ this ->plugin_name , plugin_dir_url ( __FILE__ ) . 'css/clwc-public.min.css ' , array () , $ this ->version , 'all ' );
69
+ wp_enqueue_style ( $ this ->plugin_name , plugin_dir_url ( __FILE__ ) . 'css/clwc-public.min.css ' , [] , $ this ->version , 'all ' );
70
70
}
71
71
72
72
/**
0 commit comments