chore: lint code

This commit is contained in:
Ben Goldsworthy 2021-08-02 23:23:15 +01:00
parent 6db540c08f
commit 83bd7d90dd

View file

@ -121,9 +121,12 @@ add_filter( "plugin_action_links_{$l_str_plugin_file}", array( 'Footnotes_Hooks'
*
* @since 2.7.4
*/
add_action( 'plugins_loaded', function() {
// Initialize the Plugin.
$g_obj_mci_footnotes = new Footnotes();
// Run the Plugin.
$g_obj_mci_footnotes->run();
});
add_action(
'plugins_loaded',
function() {
// Initialize the Plugin.
$g_obj_mci_footnotes = new Footnotes();
// Run the Plugin.
$g_obj_mci_footnotes->run();
}
);