diff --git a/plugin-name/trunk/admin/class-plugin-name-admin.php b/plugin-name/trunk/admin/class-plugin-name-admin.php index b5fcd99..7a2f4bc 100644 --- a/plugin-name/trunk/admin/class-plugin-name-admin.php +++ b/plugin-name/trunk/admin/class-plugin-name-admin.php @@ -45,7 +45,6 @@ class Plugin_Name_Admin { * Initialize the class and set its properties. * * @since 1.0.0 - * @access public * @var string $version The version of this plugin. */ public function __construct( $slug, $version ) { diff --git a/plugin-name/trunk/includes/class-plugin-name-loader.php b/plugin-name/trunk/includes/class-plugin-name-loader.php index c6f7ee6..093a494 100644 --- a/plugin-name/trunk/includes/class-plugin-name-loader.php +++ b/plugin-name/trunk/includes/class-plugin-name-loader.php @@ -47,7 +47,6 @@ class Plugin_Name_Loader { * Initialize the collections used to maintain the actions and filters. * * @since 1.0.0 - * @access public */ public function __construct() { @@ -60,7 +59,6 @@ class Plugin_Name_Loader { * Add a new action to the collection to be registered with WordPress. * * @since 1.0.0 - * @access public * @var string $hook The name of the WordPress action that is being registered. * @var object $component A reference to the instance of the object on which the action is defined. * @var string $callback The name of the function definition on the $component. @@ -75,7 +73,6 @@ class Plugin_Name_Loader { * Add a new filter to the collection to be registered with WordPress. * * @since 1.0.0 - * @access public * @var string $hook The name of the WordPress filter that is being registered. * @var object $component A reference to the instance of the object on which the filter is defined. * @var string $callback The name of the function definition on the $component.