namespace WPForms\Integrations\Square\Integrations;
* Interface defines required methods for integrations to work properly.
interface IntegrationInterface {
* Indicate whether current integration is allowed to load.
public function allow_load(): bool;
* Determine whether editor page is loaded.
public function is_editor_page(): bool;