1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-12 16:22:10 +03:00
WordPress-Plugin-Boilerplate/plugin-name/trunk/includes/class-plugin-name-activator.php
Tom McFarlin 2af01cf653 Updating the code comments
Making sure that the code comments strictly follow that of the WordPress PHP Documentation Standards
2014-07-29 15:56:12 -04:00

39 lines
568 B
PHP

<?php
/**
* Short Description (no period)
*
* Long Description.
*
* @link http://example.com/
* @since 1.0.0
*
* @package Plugin_Name
* @subpackage Plugin_Name/includes
*/
/**
* Short Description. (use period)
*
* Long Description.
*
* @since 1.0.0
* @package Plugin_Name
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
*/
class Plugin_Name_Activator {
/**
* Short Description. (use period)
*
* Long Description.
*
* @since 1.0.0
*/
public static function activate() {
}
}