1 | <?php |
||
11 | class ShipmentCompany extends Service implements ShipmentCompanyInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var SoapClient|null |
||
16 | */ |
||
17 | private $_client; |
||
18 | |||
19 | /** |
||
20 | * Shipment Company Service constructor |
||
21 | * @throws N11Exception|\SoapFault |
||
22 | */ |
||
23 | public function __construct() |
||
28 | |||
29 | /** |
||
30 | * @return mixed |
||
31 | * @description Sistemde tanımlı olan tüm kargo şirketlerini listeler. |
||
32 | * Genel kullanıma açık bir servis olduğu için servisin kullanımı sırasında herhangi bir güvenlik kontrolü yapılmamaktadır. |
||
33 | */ |
||
34 | public function getShipmentCompanies(): object { |
||
37 | |||
38 | } |
||
39 |