mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
adding one space to comply with coding conventions
This commit is contained in:
parent
a2987b80ca
commit
ff44a40287
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class PluginName {
|
|||
add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_scripts' ) );
|
||||
|
||||
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
|
||||
register_activation_hook(__FILE__, array( $this, 'activate' ) );
|
||||
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
||||
register_deactivation_hook( __FILE__, array( $this, 'deactivate' ) );
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue