STRATO-apps/wordpress_03/app/wp-content/plugins/code-snippets/php/class-licensing.php
SHA-256: 8943b078e8e5fc383c3048832065453a1f32d1b5c1785e4c645245ce42991de0
<?php
namespace Code_Snippets;
/**
* Empty class to better support interoperability between core and pro.
*
* @package Code_Snippets
*/
class Licensing {
/**
* Determine whether the current site has an active license.
*
* @return bool
*/
public function is_licensed(): bool {
return false;
}
}