We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66370cf commit 0ffbff4Copy full SHA for 0ffbff4
1 file changed
rocket-async-css.php
@@ -65,18 +65,18 @@ function rocket_async_css_autoloader( $class_name ) {
65
66
spl_autoload_register( 'rocket_async_css_autoloader' );
67
endif;
68
-if ( ! function_exists( 'Rocket_async_css' ) ):
+if ( ! function_exists( 'get_rocket_async_css' ) ):
69
70
/**
71
* Function wrapper to get instance of plugin
72
*
73
* @return Rocket_async_css
74
*/
75
- function rocket_async_css() {
+ function get_rocket_async_css() {
76
return Rocket_Async_Css::get_instance();
77
}
78
79
- add_action( 'plugins_loaded', 'rocket_async_css', 11 );
+ add_action( 'plugins_loaded', 'get_rocket_async_css', 11 );
80
81
82
0 commit comments