-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathRequest.php
38 lines (33 loc) · 1.35 KB
/
Request.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace FedEx\DGLDService;
use FedEx\AbstractRequest;
/**
* Request sends the SOAP call to the FedEx servers and returns the response
*
* @author Jeremy Dunn <jeremy@jsdunn.info>
* @package PHP FedEx API wrapper
* @subpackage List Dangerous Goods Service
*/
class Request extends AbstractRequest
{
const PRODUCTION_URL = 'https://ws.fedex.com:443/web-services/dgld';
const TESTING_URL = 'https://wsbeta.fedex.com:443/web-services/dgld';
protected static $wsdlFileName = 'DGLD_v1.wsdl';
/**
* Sends the ListDangerousGoodsRequest and returns the response
*
* @param ComplexType\ListDangerousGoodsRequest $listDangerousGoodsRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ListDangerousGoodsReply|stdClass
*/
public function getListDangerousGoodsReply(ComplexType\ListDangerousGoodsRequest $listDangerousGoodsRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->listDangerousGoods($listDangerousGoodsRequest->toArray());
if ($returnStdClass) {
return $response;
}
$listDangerousGoodsReply = new ComplexType\ListDangerousGoodsReply;
$listDangerousGoodsReply->populateFromStdClass($response);
return $listDangerousGoodsReply;
}
}