| 1 |
<?php |
| 2 |
namespace StoreEngine\Interfaces; |
| 3 |
|
| 4 |
interface IntegrationInterface { |
| 5 |
|
| 6 |
public function setup(): void; |
| 7 |
|
| 8 |
public function dispatch_hooks(): void; |
| 9 |
|
| 10 |
public function get_id(): string; |
| 11 |
|
| 12 |
public function get_label(): string; |
| 13 |
|
| 14 |
public function get_logo(): string; |
| 15 |
|
| 16 |
public function enabled(): bool; |
| 17 |
} |
| 18 |
|
| 19 |
// End of file integration-interface.php |
| 20 |
|