19 lines
343 B
PHP
19 lines
343 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Pay\Plugin\Alipay\Data;
|
|
|
|
use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;
|
|
|
|
/**
|
|
* @see https://opendocs.alipay.com/open/029i7e
|
|
*/
|
|
class BillEreceiptQueryPlugin extends GeneralPlugin
|
|
{
|
|
protected function getMethod(): string
|
|
{
|
|
return 'alipay.data.bill.ereceipt.query';
|
|
}
|
|
}
|