| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yoast\WP\SEO\Conditionals; |
| 4 |
|
| 5 |
/** |
| 6 |
* Checks if the YOAST_SEO_NORWEGIAN_READABILITY constant is set. |
| 7 |
* |
| 8 |
* @deprecated 16.8 |
| 9 |
* @codeCoverageIgnore |
| 10 |
*/ |
| 11 |
class Norwegian_Readability_Conditional extends Feature_Flag_Conditional { |
| 12 |
|
| 13 |
/** |
| 14 |
* Returns the name of the feature flag. |
| 15 |
* 'YOAST_SEO_' is automatically prepended to it and it will be uppercased. |
| 16 |
* |
| 17 |
* @deprecated 16.8 |
| 18 |
* @codeCoverageIgnore |
| 19 |
* |
| 20 |
* @return string the name of the feature flag. |
| 21 |
*/ |
| 22 |
public function get_feature_flag() { |
| 23 |
\_deprecated_function( __METHOD__, 'WPSEO 16.8' ); |
| 24 |
return 'NORWEGIAN_READABILITY'; |
| 25 |
} |
| 26 |
} |
| 27 |
|