It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
43
parent::tearDown();
44
}
45
46
/**
47
* Filters the list of available languages to allow setting the WPLANG option in blogs.
48
*
49
* @param array $available_languages
50
*
51
* @return array
52
*/
53
public function filter_available_languages( array $available_languages = array() ) {
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.