| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yoast\WP\SEO\Conditionals; |
| 4 |
|
| 5 |
/** |
| 6 |
* Feature flag conditional for the Installation Success screen. |
| 7 |
*/ |
| 8 |
class Installation_Success_Conditional extends Feature_Flag_Conditional { |
| 9 |
|
| 10 |
/** |
| 11 |
* Returns the name of the Installation Success feature flag. |
| 12 |
* |
| 13 |
* @return string The name of the feature flag. |
| 14 |
*/ |
| 15 |
protected function get_feature_flag() { |
| 16 |
return 'INSTALLATION_SUCCESS'; |
| 17 |
} |
| 18 |
} |
| 19 |
|