1 | <?php |
||
23 | class Client extends BaseClient |
||
24 | { |
||
25 | use InteractsWithCache; |
||
26 | |||
27 | const ENDPOINT = 'pay/getsignkey'; |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | * |
||
32 | * @throws \EasyWeChat\Payment\Kernel\Exceptions\SandboxException |
||
33 | */ |
||
34 | public function key(): string |
||
50 | |||
51 | /** |
||
52 | * @param string $endpoint |
||
53 | * |
||
54 | * @return bool |
||
55 | */ |
||
56 | public function except(string $endpoint): bool |
||
64 | |||
65 | /** |
||
66 | * @return string |
||
67 | */ |
||
68 | protected function getCacheKey() |
||
72 | } |
||
73 |