Docs: Add missing @since
tag for WP_Site_Health::has_late_cron()
.
See #47223. git-svn-id: https://develop.svn.wordpress.org/trunk@45803 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0d2b94a44a
commit
4f86944a09
@ -1940,7 +1940,7 @@ class WP_Site_Health {
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*
|
*
|
||||||
* @return bool|WP_Error true if a cron was missed, false if it wasn't. WP_Error if the cron is set to that.
|
* @return bool|WP_Error True if a cron was missed, false if not. WP_Error if the cron is set to that.
|
||||||
*/
|
*/
|
||||||
public function has_missed_cron() {
|
public function has_missed_cron() {
|
||||||
if ( is_wp_error( $this->crons ) ) {
|
if ( is_wp_error( $this->crons ) ) {
|
||||||
@ -1963,7 +1963,9 @@ class WP_Site_Health {
|
|||||||
* Returns a boolean value of `true` if a scheduled task is late and ends processing. If the list of
|
* Returns a boolean value of `true` if a scheduled task is late and ends processing. If the list of
|
||||||
* crons is an instance of WP_Error, return the instance instead of a boolean value.
|
* crons is an instance of WP_Error, return the instance instead of a boolean value.
|
||||||
*
|
*
|
||||||
* @return bool|WP_Error true if a cron is late, false if it wasn't. WP_Error if the cron is set to that.
|
* @since 5.3.0
|
||||||
|
*
|
||||||
|
* @return bool|WP_Error True if a cron is late, false if not. WP_Error if the cron is set to that.
|
||||||
*/
|
*/
|
||||||
public function has_late_cron() {
|
public function has_late_cron() {
|
||||||
if ( is_wp_error( $this->crons ) ) {
|
if ( is_wp_error( $this->crons ) ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user