Passed
Push — master ( 2cd3e5...83f298 )
by Nicholas
02:04
created
src/Atdconnect.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     private static $brandwsdl 		= 'https://testws.atdconnect.com/ws/3_4/brandstyles.wsdl';
14 14
     private static $locationwsdl	= 'https://testws.atdconnect.com/ws/3_4/locations.wsdl';
15 15
     private static $productwsdl 	= 'https://testws.atdconnect.com/ws/3_4/products.wsdl';
16
-    private static $orderwsdl		= 'https://testws.atdconnect.com/ws/3_4/orders.wsdl';
16
+    private static $orderwsdl = 'https://testws.atdconnect.com/ws/3_4/orders.wsdl';
17 17
     
18 18
     protected static $location;
19 19
     
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $xml = '
32 32
 		<wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
33
-		    <wsse:UsernameToken atd:clientId="' . $client . '" xmlns:atd="http://api.atdconnect.com/atd">
34
-		        <wsse:Username>' . $user . '</wsse:Username>
35
-		        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">' . $pass . '</wsse:Password>
33
+		    <wsse:UsernameToken atd:clientId="' . $client.'" xmlns:atd="http://api.atdconnect.com/atd">
34
+		        <wsse:Username>' . $user.'</wsse:Username>
35
+		        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">' . $pass.'</wsse:Password>
36 36
 		    </wsse:UsernameToken>
37 37
 		</wsse:Security>
38 38
 		';
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
         return new \SoapHeader('http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd', 'Security', new \SoapVar($xml, XSD_ANYXML), true);
41 41
     }
42 42
     
43
-    public static function apiCall($call,$query,$service)
43
+    public static function apiCall($call, $query, $service)
44 44
     {
45
-        $client     = new \SoapClient($service);
45
+        $client = new \SoapClient($service);
46 46
         $client->__setSoapHeaders(self::$wsshead);
47
-        $response 	= $client->$call($query);
47
+        $response = $client->$call($query);
48 48
         return $response;
49 49
     }
50 50
     
@@ -65,17 +65,17 @@  discard block
 block discarded – undo
65 65
     
66 66
     public static function getLocationByCriteria()
67 67
     {
68
-        return self::apiCall('getLocationByCriteria','',self::$locationwsdl);
68
+        return self::apiCall('getLocationByCriteria', '', self::$locationwsdl);
69 69
     }
70 70
     
71 71
     public static function getLocationCutoffTimes()
72 72
     {
73
-        return self::apiCall('getLocationCutoffTimes',['location' => self::$location],self::$locationwsdl);
73
+        return self::apiCall('getLocationCutoffTimes', ['location' => self::$location], self::$locationwsdl);
74 74
     }
75 75
     
76 76
     public static function getDistributionCenter($dc = '059')
77 77
     {
78
-        return self::apiCall('getDistributionCenter',array('servicingDC' => $dc),self::$locationwsdl);
78
+        return self::apiCall('getDistributionCenter', array('servicingDC' => $dc), self::$locationwsdl);
79 79
     }
80 80
     
81 81
     //************************************************
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
     
85 85
     public static function getBrand($product = null)
86 86
     {
87
-    	return self::apiCall('getBrand',array('locationNumber' => static::$location,'productGroup' => $product),self::$brandwsdl);
87
+    	return self::apiCall('getBrand', array('locationNumber' => static::$location, 'productGroup' => $product), self::$brandwsdl);
88 88
     }
89 89
     
90 90
     public static function getStyle($brand = null)
91 91
     {
92
-    	return self::apiCall('getStyle',array('locationNumber' => static::$location,'brand' => $brand),self::$brandwsdl);
92
+    	return self::apiCall('getStyle', array('locationNumber' => static::$location, 'brand' => $brand), self::$brandwsdl);
93 93
     }
94 94
     
95 95
     
@@ -99,17 +99,17 @@  discard block
 block discarded – undo
99 99
     
100 100
     public static function getProdBrand($product = null)
101 101
     {
102
-    	return self::apiCall('getProdBrand',array('locationNumber' => static::$location,'productGroup' => $product),self::$productwsdl);
102
+    	return self::apiCall('getProdBrand', array('locationNumber' => static::$location, 'productGroup' => $product), self::$productwsdl);
103 103
     }
104 104
     
105 105
     public static function getProductByCriteria($search)
106 106
     {
107
-        return self::apiCall('getProductByCriteria',$search,self::$productwsdl);
107
+        return self::apiCall('getProductByCriteria', $search, self::$productwsdl);
108 108
     }
109 109
     
110 110
     public static function getProductByKeyword($search)
111 111
     {
112
-        return self::apiCall('getProductByKeyword',$search,self::$productwsdl);
112
+        return self::apiCall('getProductByKeyword', $search, self::$productwsdl);
113 113
     }
114 114
     
115 115
     //************************************************
@@ -118,12 +118,12 @@  discard block
 block discarded – undo
118 118
     
119 119
     public static function placeOrder($order)
120 120
     {
121
-        return self::apiCall('placeOrder',$order,self::$orderwsdl);
121
+        return self::apiCall('placeOrder', $order, self::$orderwsdl);
122 122
     }
123 123
     
124 124
     public static function previewOrder($order)
125 125
     {
126
-        return self::apiCall('previewOrder',$order,self::$orderwsdl);
126
+        return self::apiCall('previewOrder', $order, self::$orderwsdl);
127 127
     }
128 128
     
129 129
     //************************************************
@@ -132,12 +132,12 @@  discard block
 block discarded – undo
132 132
     
133 133
     public static function getOrderDetail($status)
134 134
     {
135
-        return self::apiCall('getOrderDetail',$status,self::$statuswsdl);
135
+        return self::apiCall('getOrderDetail', $status, self::$statuswsdl);
136 136
     }
137 137
     
138 138
     public static function getOrderStatusByCriteria($criteria)
139 139
     {
140
-        return self::apiCall('getOrderStatusByCriteria',$status,self::$statuswsdl);
140
+        return self::apiCall('getOrderStatusByCriteria', $status, self::$statuswsdl);
141 141
     }
142 142
     
143 143
     
Please login to merge, or discard this patch.