mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-23 04:13: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
|
@ -3,10 +3,14 @@
|
||||||
* Fired when the plugin is uninstalled.
|
* Fired when the plugin is uninstalled.
|
||||||
*
|
*
|
||||||
* @package PluginName
|
* @package PluginName
|
||||||
|
* @author TODO
|
||||||
|
* @license GPL-2.0+
|
||||||
|
* @link TODO
|
||||||
|
* @version 1.0.0
|
||||||
* @since 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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue