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

35 lines
588 B
PHP
Raw Normal View History

<?php
/**
* Short description (no period for file headers)
*
* Long description.
*
2014-05-03 22:06:57 +03:00
* @package Plugin_Name
* @subpackage Plugin_name/includes
*/
/**
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.
*
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
*/
class Plugin_Name_Deactivator {
/**
* Short description. (use period)
*
* Long description.
*
*/
public static function deactivate() {
}
}