1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-14 01:02:12 +03:00
WordPress-Plugin-Boilerplate/plugin-name/trunk/includes/class-plugin-name-activator.php

34 lines
609 B
PHP

<?php
/**
* TODO: Short description (no period for file headers)
*
* TODO: Long description.
*
* @package Plugin_Name
* @author Your Name <email@example.com>
*/
class Plugin_Name_Activator {
/**
* Short description. (use period)
*
* Long description.
*
* @since x.x.x
* @access (for functions: only use if private)
*
* @see Function/method/class relied on
* @link URL
* @global type $varname Short description.
*
* @param type $var Description.
* @param type $var Optional. Description.
* @return type Description.
*/
public static function activate() {
}
}