| 1 |
<?php |
| 2 |
/** |
| 3 |
* Product adapter contract. |
| 4 |
* |
| 5 |
* @package signls-sdk |
| 6 |
* @license GPL-3.0-or-later |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace Signls\Sdk\V1; |
| 10 |
|
| 11 |
defined( 'ABSPATH' ) || exit; |
| 12 |
|
| 13 |
interface ProductAdapterInterface { |
| 14 |
|
| 15 |
public function product_slug(): string; |
| 16 |
|
| 17 |
public function product_version(): string; |
| 18 |
|
| 19 |
public function signal_sharing_enabled(): bool; |
| 20 |
|
| 21 |
public function install_id(): string; |
| 22 |
|
| 23 |
public function contract(): array; |
| 24 |
|
| 25 |
public function snapshot(): array; |
| 26 |
} |
| 27 |
|