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

Function docs should be @param not @var.

This commit is contained in:
Chris Wilcoxson 2015-02-03 11:15:28 -06:00
parent 474e64911c
commit 2683f494ea
3 changed files with 20 additions and 20 deletions

View file

@ -44,8 +44,8 @@ class Plugin_Name_Public {
* Initialize the class and set its properties.
*
* @since 1.0.0
* @var string $plugin_name The name of the plugin.
* @var string $version The version of this plugin.
* @param string $plugin_name The name of the plugin.
* @param string $version The version of this plugin.
*/
public function __construct( $plugin_name, $version ) {