feat: paygw_moneta 1.0.0, MONETA.Assistant payment gateway for Moodle

This commit is contained in:
2026-09-25 16:42:38 +03:00
parent 70464af858
commit 14b386a550
65 changed files with 5377 additions and 59 deletions
@@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
namespace paygw_moneta\local\callback;
use paygw_moneta\local\GatewayConfig;
use paygw_moneta\local\order\Order;
use paygw_moneta\local\protocol\CallbackNotification;
use paygw_moneta\local\protocol\CallbackResponse;
/**
* @package paygw_moneta
* @copyright 2026 Moneta Labs {@link https://moneta.ru/}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
interface NotificationHandler
{
public function handle(CallbackNotification $notification, Order $order, GatewayConfig $config): CallbackResponse;
}