# wordpress-seo/trunk/src/conditionals/check-required-version-conditional.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version trunk. 19 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/conditionals/check-required-version-conditional.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/conditionals/check-required-version-conditional.php
- Modified: 2024-09-03T10:55:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/conditionals/check-required-version-conditional.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Conditionals;

/**
 * Conditional for the CHECK_REQUIRED_VERSION feature flag.
 */
class Check_Required_Version_Conditional extends Feature_Flag_Conditional {

	/**
	 * Returns the name of the feature flag.
	 *
	 * @return string The name of the feature flag.
	 */
	protected function get_feature_flag() {
		return 'CHECK_REQUIRED_VERSION';
	}
}

```
