400 ) ); } return true; } /** * Validates if WP CRON is enabled. * * @since 3.8.0 * @return bool */ private static function met_wp_cron_requirement() { return ! Constants::is_true( 'DISABLE_WP_CRON' ); } /** * Validates if `WP_CONTENT_DIR` is writable. * * @since 3.8.0 * @return bool */ private static function met_filesystem_requirement() { return is_writable( WP_CONTENT_DIR ); } }