Skip to content

Commit

Permalink
Added PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
duracelltomi committed May 12, 2022
1 parent 9653219 commit 6f43552
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion uninstall.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php
// if uninstall.php is not called by WordPress, die
/**
* Loaded when GTM4WP was uninstalled.
* Deletes plugin options from database.
*
* @package GTM4WP
* @author Thomas Geiger
* @copyright 2013- Geiger Tamás e.v. (Thomas Geiger s.e.)
* @license GNU General Public License, version 3
*/

// if uninstall.php is not called by WordPress, die.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
die;
}
Expand Down

0 comments on commit 6f43552

Please sign in to comment.