mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
updating the docblock and removing inline tabs in favor of spaces
fixes #38
This commit is contained in:
parent
49abd665ef
commit
c98aee2d55
1 changed files with 8 additions and 4 deletions
|
@ -2,13 +2,17 @@
|
||||||
/**
|
/**
|
||||||
* Fired when the plugin is uninstalled.
|
* Fired when the plugin is uninstalled.
|
||||||
*
|
*
|
||||||
* @package PluginName
|
* @package PluginName
|
||||||
* @since 1.0.0
|
* @author TODO
|
||||||
|
* @license GPL-2.0+
|
||||||
|
* @link TODO
|
||||||
|
* @version 1.0.0
|
||||||
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// If uninstall, not called from WordPress exit
|
// If uninstall, not called from WordPress, then exit
|
||||||
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Define uninstall functionality here
|
// TODO: Define uninstall functionality here
|
Loading…
Reference in a new issue