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,6 +23,13 @@
|
|||
*/
|
||||
class Plugin_Name_i18n {
|
||||
|
||||
/**
|
||||
* Short description. (use period)
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @access private
|
||||
* @var type $domain Description.
|
||||
*/
|
||||
private $domain;
|
||||
|
||||
/**
|
||||
|
@ -41,7 +48,12 @@ class Plugin_Name_i18n {
|
|||
}
|
||||
|
||||
/**
|
||||
* TODO
|
||||
* Short description. (use period)
|
||||
*
|
||||
* Long description.
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @param float $domain TODO
|
||||
*/
|
||||
public function set_domain( $domain ) {
|
||||
$this->domain = $domain;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue