This repository was archived by the owner on Sep 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathRequest.php
More file actions
57 lines (50 loc) · 2.15 KB
/
Request.php
File metadata and controls
57 lines (50 loc) · 2.15 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
namespace FedEx\InFlightShipmentService;
use FedEx\AbstractRequest;
/**
* Request sends the SOAP call to the FedEx servers and returns the response
*
* @author Jeremy Dunn <[email protected]>
* @package PHP FedEx API wrapper
* @subpackage In Flight Shipment Service
*/
class Request extends AbstractRequest
{
const PRODUCTION_URL = 'https://ws.fedex.com:443/web-services/ifss';
const TESTING_URL = 'https://wsbeta.fedex.com:443/web-services/ifss';
protected static $wsdlFileName = 'InFlightShipmentService_v1.wsdl';
/**
* Sends the ValidateDeliveryRequest and returns the response
*
* @param ComplexType\ValidateDeliveryRequest $validateDeliveryRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ValidateDeliveryReply|stdClass
*/
public function getValidateDeliveryReply(ComplexType\ValidateDeliveryRequest $validateDeliveryRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->validateDelivery($validateDeliveryRequest->toArray());
if ($returnStdClass) {
return $response;
}
$validateDeliveryReply = new ComplexType\ValidateDeliveryReply;
$validateDeliveryReply->populateFromStdClass($response);
return $validateDeliveryReply;
}
/**
* Sends the ProcessDeliveryRequest and returns the response
*
* @param ComplexType\ProcessDeliveryRequest $processDeliveryRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ProcessDeliveryReply|stdClass
*/
public function getProcessDeliveryReply(ComplexType\ProcessDeliveryRequest $processDeliveryRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->processDelivery($processDeliveryRequest->toArray());
if ($returnStdClass) {
return $response;
}
$processDeliveryReply = new ComplexType\ProcessDeliveryReply;
$processDeliveryReply->populateFromStdClass($response);
return $processDeliveryReply;
}
}