Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.

Commit 7653cf6

Browse files
committed
Set the proper next version
1 parent f83cfbf commit 7653cf6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/abilities-api/class-wp-ability.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ protected function validate_input( $input = null ) {
312312
*
313313
* The input is validated against the input schema before it is passed to to permission callback.
314314
*
315-
* @since N.E.X.T
315+
* @since 0.2.0
316316
*
317317
* @param mixed $input Optional. The input data for permission checking. Default `null`.
318318
* @return bool|\WP_Error Whether the ability has the necessary permission.
@@ -335,7 +335,7 @@ public function check_permissions( $input = null ) {
335335
*
336336
* The input is validated against the input schema before it is passed to to permission callback.
337337
*
338-
* @deprecated N.E.X.T Use check_permissions() instead.
338+
* @deprecated 0.2.0 Use check_permissions() instead.
339339
* @see WP_Ability::check_permissions()
340340
*
341341
* @since 0.1.0
@@ -344,7 +344,7 @@ public function check_permissions( $input = null ) {
344344
* @return bool|\WP_Error Whether the ability has the necessary permission.
345345
*/
346346
public function has_permission( $input = null ) {
347-
_deprecated_function( __METHOD__, 'N.E.X.T', 'WP_Ability::check_permissions()' );
347+
_deprecated_function( __METHOD__, '0.2.0', 'WP_Ability::check_permissions()' );
348348
return $this->check_permissions( $input );
349349
}
350350

0 commit comments

Comments
 (0)