Fix addons

This commit is contained in:
David Stone
2025-01-05 16:09:40 -07:00
parent e60ffba94a
commit a5b5491265

17
inc/class-license.php Normal file
View File

@ -0,0 +1,17 @@
<?php
namespace WP_Ultimo;
class License {
use \WP_Ultimo\Traits\Singleton;
/**
* This exists to maintain compatibility with Addons
*
* @return null
*/
public function get_license_key()
{
return null;
}
}