File "jetpack-boost-active-conditional.php"

Full Path: /home/mba/public_html/wp-content-20250807152928/plugins/wordpress-seo/src/conditionals/third-party/jetpack-boost-active-conditional.php
File size: 543 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Yoast\WP\SEO\Conditionals\Third_Party;

use Yoast\WP\SEO\Conditionals\Conditional;

/**
 * Conditional that is only met when Jetpack_Boost exists.
 */
class Jetpack_Boost_Active_Conditional implements Conditional {

	/**
	 * Returns `true` when the Jetpack_Boost class exists within this WordPress installation.
	 *
	 * @return bool `true` when the Jetpack_Boost class exists within this WordPress installation.
	 */
	public function is_met() {
		return \class_exists( '\Automattic\Jetpack_Boost\Jetpack_Boost', false );
	}
}