From 6821cb07ef9ae33cd983debd4cfebe49398fcbc2 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 29 Nov 2022 12:40:08 +0000 Subject: [PATCH] Coding Standards: Add visibility to properties in `tests/phpunit/tests/`. Adds a `private` visibility to some test class properties where it was not explicitly specified. This continues the previous efforts to make sure visibility is declared on all properties. Note: This will be enforced by WPCS 3.0.0. Follow-up to [49184], [51919], [52009], [52010], [54889]. Props jrf. See #56791. git-svn-id: https://develop.svn.wordpress.org/trunk@54890 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/menu/wp-nav-menu.php | 10 +++++----- tests/phpunit/tests/query/fieldsClause.php | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/phpunit/tests/menu/wp-nav-menu.php b/tests/phpunit/tests/menu/wp-nav-menu.php index a077766567..08f105be9a 100644 --- a/tests/phpunit/tests/menu/wp-nav-menu.php +++ b/tests/phpunit/tests/menu/wp-nav-menu.php @@ -7,11 +7,11 @@ */ class Tests_Menu_wpNavMenu extends WP_UnitTestCase { - static $menu_id = 0; - static $lvl0_menu_item = 0; - static $lvl1_menu_item = 0; - static $lvl2_menu_item = 0; - static $lvl3_menu_item = 0; + private static $menu_id = 0; + private static $lvl0_menu_item = 0; + private static $lvl1_menu_item = 0; + private static $lvl2_menu_item = 0; + private static $lvl3_menu_item = 0; public static function set_up_before_class() { parent::set_up_before_class(); diff --git a/tests/phpunit/tests/query/fieldsClause.php b/tests/phpunit/tests/query/fieldsClause.php index 87f78a8719..28c040d79c 100644 --- a/tests/phpunit/tests/query/fieldsClause.php +++ b/tests/phpunit/tests/query/fieldsClause.php @@ -11,14 +11,14 @@ class Tests_Query_FieldsClause extends WP_UnitTestCase { * * @var int[] */ - static $post_ids = array(); + private static $post_ids = array(); /** * Page IDs. * * @var int[] */ - static $page_ids = array(); + private static $page_ids = array(); public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) { // Register CPT for use with shared fixtures.