# code-snippets/3.10.1/php/Core/Licensing.php

Code Snippets, version 3.10.1. 21 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.10.1/code/php/Core/Licensing.php
- Raw: https://pluginprobe.com/plugins/code-snippets/3.10.1/raw/php/Core/Licensing.php
- Modified: 2026-06-19T15:56:12+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.10.1/code/php/Core/Licensing.php#L10-L20`.

```php
<?php

namespace Code_Snippets\Core;

/**
 * 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;
	}
}

```
