coding standards for webhook module

This commit is contained in:
David Remer 2020-08-27 13:10:16 +03:00
parent 653a765235
commit 7fcda592f7
19 changed files with 813 additions and 409 deletions

View file

@ -1,4 +1,9 @@
<?php
/**
* The webhook module.
*
* @package Inpsyde\PayPalCommerce\Webhooks
*/
declare(strict_types=1);
@ -7,5 +12,5 @@ namespace Inpsyde\PayPalCommerce\Webhooks;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new WebhookModule();
return new WebhookModule();
};