Coding Standards: Add visibility to methods in tests/phpunit/tests/.

Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods. This continues the previous efforts to make sure visibility is declared on all methods. 

Note: This will be enforced by WPCS 3.0.0.

Follow-up to [51919], [52009], [52010].

Props jrf.
See #56791.

git-svn-id: https://develop.svn.wordpress.org/trunk@54889 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2022-11-29 12:32:37 +00:00
parent 5cb17e222d
commit 8f86cdb2e0
21 changed files with 116 additions and 116 deletions

View File

@@ -593,7 +593,7 @@ class Tests_Widgets extends WP_UnitTestCase {
/**
* @ticket 52728
*/
function test_widget_display_callback_handles_arrayobject() {
public function test_widget_display_callback_handles_arrayobject() {
$widget = new WP_Widget_Text();
register_widget( $widget );