1 | <?php |
||
10 | class ClaimCancel extends Service implements ClaimCancelInterface |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var SoapClient|null |
||
15 | */ |
||
16 | private $_client; |
||
17 | |||
18 | /** |
||
19 | * Category constructor |
||
20 | * endPoint set edildi. |
||
21 | * @throws N11Exception|\SoapFault |
||
22 | */ |
||
23 | public function __construct() |
||
28 | |||
29 | public function list(array $data): object { |
||
33 | |||
34 | public function deny(int $claimCancelId, int $reasonId, string $note): object { |
||
40 | |||
41 | public function denyReasonTypes(): object { |
||
44 | |||
45 | public function approve(int $claimCancelId): object { |
||
49 | |||
50 | } |
||
51 |