1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace ColissimoPickupPoint; |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* Class which returns the class map definition |
7
|
|
|
* @package |
8
|
|
|
*/ |
9
|
|
|
class ClassMap |
10
|
|
|
{ |
11
|
|
|
/** |
12
|
|
|
* Returns the mapping between the WSDL Structs and generated Structs' classes |
13
|
|
|
* This array is sent to the \SoapClient when calling the WS |
14
|
|
|
* @return string[] |
15
|
|
|
*/ |
16
|
|
|
final public static function get() |
17
|
|
|
{ |
18
|
|
|
return array( |
19
|
|
|
'PointRetrait' => '\\ColissimoPickupPoint\\StructType\\PointRetrait', |
20
|
|
|
'Conges' => '\\ColissimoPickupPoint\\StructType\\Conges', |
21
|
|
|
'findRDVPointRetraitAcheminement' => '\\ColissimoPickupPoint\\StructType\\FindRDVPointRetraitAcheminement', |
22
|
|
|
'findRDVPointRetraitAcheminementResponse' => '\\ColissimoPickupPoint\\StructType\\FindRDVPointRetraitAcheminementResponse', |
23
|
|
|
'rdvPointRetraitAcheminementResult' => '\\ColissimoPickupPoint\\StructType\\RdvPointRetraitAcheminementResult', |
24
|
|
|
'pointRetraitAcheminementResult' => '\\ColissimoPickupPoint\\StructType\\PointRetraitAcheminementResult', |
25
|
|
|
'pointRetraitAcheminement' => '\\ColissimoPickupPoint\\StructType\\PointRetraitAcheminement', |
26
|
|
|
'findRDVPointRetraitAcheminementByToken' => '\\ColissimoPickupPoint\\StructType\\FindRDVPointRetraitAcheminementByToken', |
27
|
|
|
'findRDVPointRetraitAcheminementByTokenResponse' => '\\ColissimoPickupPoint\\StructType\\FindRDVPointRetraitAcheminementByTokenResponse', |
28
|
|
|
'findPointRetraitAcheminementByID' => '\\ColissimoPickupPoint\\StructType\\FindPointRetraitAcheminementByID', |
29
|
|
|
'findPointRetraitAcheminementByIDResponse' => '\\ColissimoPickupPoint\\StructType\\FindPointRetraitAcheminementByIDResponse', |
30
|
|
|
'pointRetraitAcheminementByIDResult' => '\\ColissimoPickupPoint\\StructType\\PointRetraitAcheminementByIDResult', |
31
|
|
|
'Exception' => '\\ColissimoPickupPoint\\StructType\\Exception', |
32
|
|
|
); |
33
|
|
|
} |
34
|
|
|
} |
35
|
|
|
|