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:
parent
9f5ffbf597
commit
23235f94d7
6 changed files with 152 additions and 22 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue