| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/pia/wp-content/plugins/wordpress-seo-premium/cli/ |
Upload File : |
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\CLI
*/
/**
* Enforce premium version requirement on commands covering premium features.
*/
final class WPSEO_CLI_Premium_Requirement {
/**
* Enforces license requirements for commands representing premium
* functionality.
*
* @return void
*/
public static function enforce() {
if ( YoastSEO()->helpers->product->is_premium() ) {
return;
}
// No premium commands allowed.
WP_CLI::error(
'This command can only be run with an active Yoast SEO Premium license.'
);
}
}