1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-04-19 05:35:36 +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

@ -1,14 +1,16 @@
<?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 {
}