1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-14 09:12:10 +03:00

adding docblocks consistent with the wpcs for the files in includes

http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/
Signed-off-by: Tom McFarlin <tom@tommcfarlin.com>
This commit is contained in:
Tom McFarlin 2014-04-25 18:58:07 -04:00
parent 2cf4ba8223
commit 026515da85
3 changed files with 27 additions and 28 deletions

View file

@ -7,27 +7,24 @@
* *
* @package Plugin_Name * @package Plugin_Name
* @author Your Name <email@example.com> * @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
*/ */
class Plugin_Name_Activator { class Plugin_Name_Activator {
/** /**
* TODO: Short description. (use period) * Short description. (use period)
* *
* TODO: Long description. * Long description.
* *
* @since x.x.x * @since x.x.x
* @access (for functions: only use if private)
* *
* @param type $var Description. * @see Function/method/class relied on
* @param array $args { * @link URL
* Short description about this hash. * @global type $varname Short description.
* *
* @type type $var Description. * @param type $var Description.
* @type type $var Description. * @param type $var Optional. Description.
* } * @return type Description.
* @param type $var Description.
*/ */
public static function activate() { public static function activate() {

View file

@ -1,15 +1,15 @@
<?php <?php
/** /**
* TODO: Short description (no period for file headers) * Short Description (no period for file headers)
* *
* TODO: Long description. * Long Description.
* *
* @package Plugin_Name * @link URL
* @author Your Name <email@example.com> * @since x.x.x (if available)
* @license GPL-2.0+ *
* @link http://example.com * @package WordPress
* @copyright 2014 Your Name or Company Name * @subpackage Component
*/ */
class Plugin_Name_Deactivator { class Plugin_Name_Deactivator {

View file

@ -1,14 +1,16 @@
<?php <?php
/**
* @TEAM http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/#1-functions-and-class-methods
*
* @package Plugin_Name
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
*/
/**
* Short Description (no period for file headers)
*
* Long Description.
*
* @link URL
* @since x.x.x (if available)
*
* @package WordPress
* @subpackage Component
*/
class Plugin_Name { class Plugin_Name {
} }