Skip to content

Commit

Permalink
Remove @access tags
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Apr 7, 2024
1 parent c093253 commit 44e9a64
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
2 changes: 0 additions & 2 deletions includes/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ class Protected_Video_Admin
/**
* The plugin ID.
*
* @access private
* @var string $plugin_name The ID of this plugin.
*/
private $plugin_name;

/**
* The plugin version.
*
* @access private
* @var string $version The current version of this plugin.
*/
private $version;
Expand Down
8 changes: 0 additions & 8 deletions includes/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ class Protected_Video
/**
* Unique identifier of this plugin.
*
* @access protected
* @var string $plugin_name The string used to uniquely identify this plugin.
*/
protected $plugin_name;

/**
* Current version of the plugin.
*
* @access protected
* @var string $version The current version of the plugin.
*/
protected $version;
Expand Down Expand Up @@ -51,8 +49,6 @@ public function init()

/**
* Load required plugin dependencies.
*
* @access private
*/
private function load_dependencies()
{
Expand All @@ -69,8 +65,6 @@ private function load_dependencies()

/**
* Register hooks related to the admin area functionality.
*
* @access private
*/
private function define_admin_hooks()
{
Expand Down Expand Up @@ -100,8 +94,6 @@ private function define_admin_hooks()

/**
* Register hooks related to the public-facing functionality.
*
* @access private
*/
private function define_public_hooks()
{
Expand Down
8 changes: 0 additions & 8 deletions includes/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ class Protected_Video_Public
/**
* The plugin ID.
*
* @access private
* @var string $plugin_name The ID of this plugin.
*/
private $plugin_name;

/**
* The plugin version.
*
* @access private
* @var string $version The current version of this plugin.
*/
private $version;
Expand Down Expand Up @@ -127,8 +125,6 @@ public function add_body_classes($classes)

/**
* Utility returning if the scripts and styles should be enqueued.
*
* @access private
*/
private function should_enqueue_assets()
{
Expand All @@ -139,8 +135,6 @@ private function should_enqueue_assets()

/**
* Utility returning if the post contains the plugin block or Shortcode.
*
* @access private
*/
private function post_contains_block_or_shortcode($post_id)
{
Expand All @@ -151,8 +145,6 @@ private function post_contains_block_or_shortcode($post_id)

/**
* Utility returning if the post is a custom type or is using a custom template.
*
* @access private
*/
private function post_is_custom($post_id)
{
Expand Down

0 comments on commit 44e9a64

Please sign in to comment.