gringlas/go-client

SoapClient for usage with GO API (https://www.general-overnight.com).

0.2.4 2020-05-12 06:57 UTC

This package is auto-updated.

Last update: 2024-05-12 16:51:08 UTC


README

SoapClient for usage with GO API (https://www.general-overnight.com).

How to use

Just create an object of GoClient class.

$wdsl = "Path/to/wdsl";
$options = [
    'login' => 'yourGoLoginName',
    'password' => 'yourGoPassword',
    ...
    # pass other options for SoapCLient as noted in https://www.php.net/manual/de/soapclient.soapclient.php
];

$goClient = new GoClient($wdsl, $options);