add webhook

This commit is contained in:
David Remer 2020-07-06 11:04:06 +03:00
parent a740e866fe
commit 33a84b19cb
11 changed files with 278 additions and 1 deletions

View file

@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Webhooks;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new WebhookModule();
};