mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 05:12:57 +02:00
026515da85
http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/ Signed-off-by: Tom McFarlin <tom@tommcfarlin.com>
37 lines
594 B
PHP
37 lines
594 B
PHP
<?php
|
|
|
|
/**
|
|
* Short Description (no period for file headers)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @link URL
|
|
* @since x.x.x (if available)
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Component
|
|
*/
|
|
class Plugin_Name_Deactivator {
|
|
|
|
/**
|
|
* TODO: Short description. (use period)
|
|
*
|
|
* TODO: Long description.
|
|
*
|
|
* @since x.x.x
|
|
*
|
|
* @param type $var Description.
|
|
* @param array $args {
|
|
* Short description about this hash.
|
|
*
|
|
* @type type $var Description.
|
|
* @type type $var Description.
|
|
* }
|
|
* @param type $var Description.
|
|
*/
|
|
public static function deactivate() {
|
|
|
|
}
|
|
|
|
}
|