coding standards for api client

This commit is contained in:
David Remer 2020-09-01 09:00:45 +03:00
parent f5bb4048cd
commit 804bf35bbe
157 changed files with 8405 additions and 5283 deletions

View file

@ -1,4 +1,10 @@
<?php
/**
* The api client module.
*
* @package Inpsyde\PayPalCommerce\ApiClient
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\ApiClient;
@ -6,5 +12,5 @@ namespace Inpsyde\PayPalCommerce\ApiClient;
use Dhii\Modular\Module\ModuleInterface;
return function (): ModuleInterface {
return new ApiModule();
return new ApiModule();
};