1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-06-01 09:59:40 +03:00
WordPress-Plugin-Boilerplate/plugin-name/trunk/includes/class-plugin-name-deactivator.php

38 lines
734 B
PHP
Raw Normal View History

<?php
/**
2014-05-03 22:28:04 +03:00
* Define a short description for what this class does (no period)
*
2014-05-03 22:06:57 +03:00
* @package Plugin_Name
2014-05-03 22:28:04 +03:00
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
* @since 1.0.0
*/
/**
2014-05-03 22:06:57 +03:00
* Define a short description for what this class does.
*
2014-05-03 22:06:57 +03:00
* Define a longer description for the purpose of this class.
*
2014-05-03 22:28:04 +03:00
* @package Plugin_Name
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
*/
class Plugin_Name_Deactivator {
/**
* Short description. (use period)
*
* Long description.
*
2014-05-03 22:28:04 +03:00
* @since 1.0.0
*/
public static function deactivate() {
}
}