magento2-plugin/Api/WebhookInterface.php
2021-09-01 11:14:17 +02:00

16 lines
188 B
PHP

<?php
declare(strict_types=1);
namespace Storefront\BTCPay\Api;
interface WebhookInterface {
/**
* Process
* @return bool
*/
public function process(): bool;
}