Docs: Fix incorrect property doc in WP_Theme::get_allowed() tests.

The `@array` tag does not exist. This should be `@var array`.

Reference: [https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#2-1-class-members PHP Documentation Standards: Class Members].

Follow-up to [36350].

Props jrf.
See #59651.

git-svn-id: https://develop.svn.wordpress.org/trunk@57107 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2023-11-12 09:19:20 +00:00
parent 152a1ecd81
commit 00791300b3

View File

@@ -8,7 +8,7 @@ if ( is_multisite() ) :
*/
class Tests_Theme_wpThemeGetAllowedFilters extends WP_UnitTestCase {
/**
* @array List of themes allowed before filters are applied.
* @var array List of themes allowed before filters are applied.
*/
protected $default_allowed;