1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-28 09:23:15 +03:00

Removing public @access tags

Following the guide of the PHPDoc Block Formatting

> @access (for functions: only use if private)

Fix #191
This commit is contained in:
Tom McFarlin 2014-07-30 15:00:57 -04:00
parent 4d9f666e0f
commit 918ee9e5f9
2 changed files with 0 additions and 4 deletions

View file

@ -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 ) {

View file

@ -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.