1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-04-19 05:35:36 +03:00

completing the initial round of PHP documentation as per the WPCS

http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/#1-functions-and-class-methods
This commit is contained in:
Tom McFarlin 2014-06-26 16:19:57 -04:00
parent 9f5ffbf597
commit 23235f94d7
6 changed files with 152 additions and 22 deletions

View file

@ -23,8 +23,23 @@
*/
class Plugin_Name_Public {
/**
* Short description. (use period)
*
* @since 1.0.0
* @access private
* @var type $var Description.
*/
private $version;
/**
* Short description. (use period)
*
* Long description.
*
* @since 1.0.0
* @param float $version TODO
*/
public function __construct( $version ) {
$this->version = $version;
}