Skip to content

Commit

Permalink
optimize(style): optimize coding style (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
yansongda authored Sep 9, 2023
1 parent 0f35b84 commit 98b101c
Show file tree
Hide file tree
Showing 60 changed files with 60 additions and 180 deletions.
4 changes: 1 addition & 3 deletions src/Contract/EventDispatcherInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

namespace Yansongda\Pay\Contract;

interface EventDispatcherInterface extends \Psr\EventDispatcher\EventDispatcherInterface
{
}
interface EventDispatcherInterface extends \Psr\EventDispatcher\EventDispatcherInterface {}
4 changes: 1 addition & 3 deletions src/Contract/HttpClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@

use Psr\Http\Client\ClientInterface;

interface HttpClientInterface extends ClientInterface
{
}
interface HttpClientInterface extends ClientInterface {}
4 changes: 1 addition & 3 deletions src/Contract/LoggerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

namespace Yansongda\Pay\Contract;

interface LoggerInterface extends \Psr\Log\LoggerInterface
{
}
interface LoggerInterface extends \Psr\Log\LoggerInterface {}
4 changes: 1 addition & 3 deletions src/Direction/ResponseDirection.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

namespace Yansongda\Pay\Direction;

class ResponseDirection extends NoHttpRequestDirection
{
}
class ResponseDirection extends NoHttpRequestDirection {}
4 changes: 1 addition & 3 deletions src/Event/ApiRequested.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

namespace Yansongda\Pay\Event;

class ApiRequested extends Event
{
}
class ApiRequested extends Event {}
4 changes: 1 addition & 3 deletions src/Event/ApiRequesting.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

namespace Yansongda\Pay\Event;

class ApiRequesting extends Event
{
}
class ApiRequesting extends Event {}
4 changes: 1 addition & 3 deletions src/Event/PayFinish.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

namespace Yansongda\Pay\Event;

class PayFinish extends Event
{
}
class PayFinish extends Event {}
4 changes: 1 addition & 3 deletions src/Plugin/Alipay/GeneralPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ public function assembly(Rocket $rocket, Closure $next): Rocket
return $next($rocket);
}

protected function doSomethingBefore(Rocket $rocket): void
{
}
protected function doSomethingBefore(Rocket $rocket): void {}

abstract protected function getMethod(): string;
}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Fund/Balance/QueryDayEndPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ protected function getMethod(): string
return 'GET';
}

protected function doSomething(Rocket $rocket): void
{
}
protected function doSomething(Rocket $rocket): void {}

/**
* @throws InvalidParamsException
Expand Down
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Fund/Balance/QueryPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ protected function getMethod(): string
return 'GET';
}

protected function doSomething(Rocket $rocket): void
{
}
protected function doSomething(Rocket $rocket): void {}

/**
* @throws InvalidParamsException
Expand Down
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/ClosePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_3.shtml
*/
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin
{
}
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/DownloadBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_8.shtml
*/
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin
{
}
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/GetFlowBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_7.shtml
*/
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin
{
}
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/GetTradeBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_6.shtml
*/
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin
{
}
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/QueryPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_2.shtml
*/
class QueryPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryPlugin
{
}
class QueryPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/QueryRefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_10.shtml
*/
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin
{
}
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/App/RefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_2_9.shtml
*/
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin
{
}
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/DownloadBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_19.shtml
*/
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin
{
}
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/GetFlowBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_18.shtml
*/
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin
{
}
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/GetTradeBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_17.shtml
*/
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin
{
}
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/InvokeAppPrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_6.shtml
*/
class InvokeAppPrepayPlugin extends InvokePrepayPlugin
{
}
class InvokeAppPrepayPlugin extends InvokePrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/InvokeJsapiPrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_8.shtml
*/
class InvokeJsapiPrepayPlugin extends InvokePrepayPlugin
{
}
class InvokeJsapiPrepayPlugin extends InvokePrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/InvokeMiniPrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_9.shtml
*/
class InvokeMiniPrepayPlugin extends InvokePrepayPlugin
{
}
class InvokeMiniPrepayPlugin extends InvokePrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/JsapiPrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_3.shtml
*/
class JsapiPrepayPlugin extends CombinePrepayPlugin
{
}
class JsapiPrepayPlugin extends CombinePrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/MiniPrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_4.shtml
*/
class MiniPrepayPlugin extends CombinePrepayPlugin
{
}
class MiniPrepayPlugin extends CombinePrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/QueryRefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_15.shtml
*/
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin
{
}
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Combine/RefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter5_1_14.shtml
*/
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin
{
}
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/ClosePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_3.shtml
*/
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin
{
}
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/DownloadBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_8.shtml
*/
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin
{
}
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/GetFlowBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_7.shtml
*/
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin
{
}
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/GetTradeBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_6.shtml
*/
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin
{
}
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/QueryPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_2.shtml
*/
class QueryPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryPlugin
{
}
class QueryPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/QueryRefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_10.shtml
*/
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin
{
}
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/H5/RefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_3_9.shtml
*/
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin
{
}
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/ClosePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_3.shtml
*/
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin
{
}
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/DownloadBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_8.shtml
*/
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin
{
}
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/GetFlowBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_7.shtml
*/
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin
{
}
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/GetTradeBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_6.shtml
*/
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin
{
}
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/InvokePrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_4.shtml
*/
class InvokePrepayPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\InvokePrepayPlugin
{
}
class InvokePrepayPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\InvokePrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/InvokePrepayV2Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_7&index=6
*/
class InvokePrepayV2Plugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\InvokePrepayV2Plugin
{
}
class InvokePrepayV2Plugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\InvokePrepayV2Plugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/PrepayPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_1.shtml
*/
class PrepayPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\PrepayPlugin
{
}
class PrepayPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\PrepayPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/QueryPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_2.shtml
*/
class QueryPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryPlugin
{
}
class QueryPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/QueryRefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_10.shtml
*/
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin
{
}
class QueryRefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\QueryRefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Jsapi/RefundPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_9.shtml
*/
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin
{
}
class RefundPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\RefundPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Mini/ClosePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_5_3.shtml
*/
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin
{
}
class ClosePlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\ClosePlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Mini/DownloadBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_5_8.shtml
*/
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin
{
}
class DownloadBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\DownloadBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Mini/GetFlowBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_5_7.shtml
*/
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin
{
}
class GetFlowBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetFlowBillPlugin {}
4 changes: 1 addition & 3 deletions src/Plugin/Wechat/Pay/Mini/GetTradeBillPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* @see https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_5_6.shtml
*/
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin
{
}
class GetTradeBillPlugin extends \Yansongda\Pay\Plugin\Wechat\Pay\Common\GetTradeBillPlugin {}
Loading

0 comments on commit 98b101c

Please sign in to comment.