# code-snippets/3.7.0/php/class-licensing.php

Code Snippets, version 3.7.0. 21 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.7.0/code/php/class-licensing.php
- Raw: https://pluginprobe.com/plugins/code-snippets/3.7.0/raw/php/class-licensing.php
- Modified: 2025-01-24T11:58:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.7.0/code/php/class-licensing.php#L10-L20`.

```php
<?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;
	}
}

```
