From c98aee2d5593f0b259cdcf5757f125e418e7f1b3 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Sun, 12 May 2013 08:28:30 -0400 Subject: [PATCH] updating the docblock and removing inline tabs in favor of spaces fixes #38 --- plugin-boilerplate/uninstall.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/plugin-boilerplate/uninstall.php b/plugin-boilerplate/uninstall.php index 37927e9..26715fe 100644 --- a/plugin-boilerplate/uninstall.php +++ b/plugin-boilerplate/uninstall.php @@ -2,13 +2,17 @@ /** * Fired when the plugin is uninstalled. * - * @package PluginName - * @since 1.0.0 + * @package PluginName + * @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' ) ) { exit(); } -// TODO: Define uninstall functionality here \ No newline at end of file +// TODO: Define uninstall functionality here \ No newline at end of file