1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-29 01:43:16 +03:00

Move function lower down

This commit is contained in:
Ulrich Pogson 2013-10-15 20:57:29 +02:00
parent 60b58949ce
commit 63e9ea97f4

View file

@ -40,15 +40,6 @@ class Plugin_Name {
*/
protected $plugin_slug = 'plugin-name';
/**
* Return the plugin slug.
*
* @since 1.0.0
*/
public function get_plugin_slug() {
return $this->plugin_slug;
}
/**
* Instance of this class.
*
@ -81,6 +72,17 @@ class Plugin_Name {
}
/**
* Return the plugin slug.
*
* @since 1.0.0
*
*@return Plugin slug variable.
*/
public function get_plugin_slug() {
return $this->plugin_slug;
}
/**
* Return an instance of this class.
*