Passed
Push — master ( 2cd3e5...83f298 )
by Nicholas
02:04
created
src/config/config.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-	return (object) [
4
-		'client'	=>	'your_clientname',
5
-		'user'		=>	'your_username',
6
-		'pass'		=>	'your_password',
7
-		'location'	=>	'location_number' 
8
-	];
9 3
\ No newline at end of file
4
+        return (object) [
5
+                'client'	=>	'your_clientname',
6
+                'user'		=>	'your_username',
7
+                'pass'		=>	'your_password',
8
+                'location'	=>	'location_number' 
9
+        ];
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
src/Atdconnect.php 1 patch
Indentation   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -8,26 +8,26 @@  discard block
 block discarded – undo
8 8
 class Atdconnect
9 9
 {
10 10
     
11
-    public static $wsshead;
12
-    private static $statuswsdl		= 'https://testws.atdconnect.com/ws/3_4/orderStatus.wsdl';
13
-    private static $brandwsdl 		= 'https://testws.atdconnect.com/ws/3_4/brandstyles.wsdl';
14
-    private static $locationwsdl	= 'https://testws.atdconnect.com/ws/3_4/locations.wsdl';
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';
11
+        public static $wsshead;
12
+        private static $statuswsdl		= 'https://testws.atdconnect.com/ws/3_4/orderStatus.wsdl';
13
+        private static $brandwsdl 		= 'https://testws.atdconnect.com/ws/3_4/brandstyles.wsdl';
14
+        private static $locationwsdl	= 'https://testws.atdconnect.com/ws/3_4/locations.wsdl';
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';
17 17
     
18
-    protected static $location;
18
+        protected static $location;
19 19
     
20 20
     
21
-    public function __construct()
22
-    {
21
+        public function __construct()
22
+        {
23 23
         $config = include('config/config.php');
24 24
         self::$wsshead = $this->getWSSHeader($config->user, $config->pass, $config->client);
25 25
         self::$location = $config->location;
26 26
        
27
-    }
27
+        }
28 28
     
29
-    public static function getWSSHeader($user, $pass, $client)
30
-    {
29
+        public static function getWSSHeader($user, $pass, $client)
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 33
 		    <wsse:UsernameToken atd:clientId="' . $client . '" xmlns:atd="http://api.atdconnect.com/atd">
@@ -38,107 +38,107 @@  discard block
 block discarded – undo
38 38
 		';
39 39
         
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)
44
-    {
43
+        public static function apiCall($call,$query,$service)
44
+        {
45 45
         $client     = new \SoapClient($service);
46 46
         $client->__setSoapHeaders(self::$wsshead);
47 47
         $response 	= $client->$call($query);
48 48
         return $response;
49
-    }
49
+        }
50 50
     
51
-    public function setLocation($location)
52
-    {
53
-	    static::$location = $location;
51
+        public function setLocation($location)
52
+        {
53
+                static::$location = $location;
54 54
         return static::$location;
55
-    }
55
+        }
56 56
     
57
-    public function getLocation()
58
-    {
59
-	    return static::$location;
60
-    }
57
+        public function getLocation()
58
+        {
59
+                return static::$location;
60
+        }
61 61
     
62
-    //************************************************
63
-    //               Location Service
64
-    //************************************************
62
+        //************************************************
63
+        //               Location Service
64
+        //************************************************
65 65
     
66
-    public static function getLocationByCriteria()
67
-    {
66
+        public static function getLocationByCriteria()
67
+        {
68 68
         return self::apiCall('getLocationByCriteria','',self::$locationwsdl);
69
-    }
69
+        }
70 70
     
71
-    public static function getLocationCutoffTimes()
72
-    {
71
+        public static function getLocationCutoffTimes()
72
+        {
73 73
         return self::apiCall('getLocationCutoffTimes',['location' => self::$location],self::$locationwsdl);
74
-    }
74
+        }
75 75
     
76
-    public static function getDistributionCenter($dc = '059')
77
-    {
76
+        public static function getDistributionCenter($dc = '059')
77
+        {
78 78
         return self::apiCall('getDistributionCenter',array('servicingDC' => $dc),self::$locationwsdl);
79
-    }
79
+        }
80 80
     
81
-    //************************************************
82
-    //               Brand Styles Service
83
-    //************************************************
81
+        //************************************************
82
+        //               Brand Styles Service
83
+        //************************************************
84 84
     
85
-    public static function getBrand($product = null)
86
-    {
87
-    	return self::apiCall('getBrand',array('locationNumber' => static::$location,'productGroup' => $product),self::$brandwsdl);
88
-    }
85
+        public static function getBrand($product = null)
86
+        {
87
+                return self::apiCall('getBrand',array('locationNumber' => static::$location,'productGroup' => $product),self::$brandwsdl);
88
+        }
89 89
     
90
-    public static function getStyle($brand = null)
91
-    {
92
-    	return self::apiCall('getStyle',array('locationNumber' => static::$location,'brand' => $brand),self::$brandwsdl);
93
-    }
90
+        public static function getStyle($brand = null)
91
+        {
92
+                return self::apiCall('getStyle',array('locationNumber' => static::$location,'brand' => $brand),self::$brandwsdl);
93
+        }
94 94
     
95 95
     
96
-    //************************************************
97
-    //               Products Service
98
-    //************************************************
96
+        //************************************************
97
+        //               Products Service
98
+        //************************************************
99 99
     
100
-    public static function getProdBrand($product = null)
101
-    {
102
-    	return self::apiCall('getProdBrand',array('locationNumber' => static::$location,'productGroup' => $product),self::$productwsdl);
103
-    }
100
+        public static function getProdBrand($product = null)
101
+        {
102
+                return self::apiCall('getProdBrand',array('locationNumber' => static::$location,'productGroup' => $product),self::$productwsdl);
103
+        }
104 104
     
105
-    public static function getProductByCriteria($search)
106
-    {
105
+        public static function getProductByCriteria($search)
106
+        {
107 107
         return self::apiCall('getProductByCriteria',$search,self::$productwsdl);
108
-    }
108
+        }
109 109
     
110
-    public static function getProductByKeyword($search)
111
-    {
110
+        public static function getProductByKeyword($search)
111
+        {
112 112
         return self::apiCall('getProductByKeyword',$search,self::$productwsdl);
113
-    }
113
+        }
114 114
     
115
-    //************************************************
116
-    //               Order Service
117
-    //************************************************
115
+        //************************************************
116
+        //               Order Service
117
+        //************************************************
118 118
     
119
-    public static function placeOrder($order)
120
-    {
119
+        public static function placeOrder($order)
120
+        {
121 121
         return self::apiCall('placeOrder',$order,self::$orderwsdl);
122
-    }
122
+        }
123 123
     
124
-    public static function previewOrder($order)
125
-    {
124
+        public static function previewOrder($order)
125
+        {
126 126
         return self::apiCall('previewOrder',$order,self::$orderwsdl);
127
-    }
127
+        }
128 128
     
129
-    //************************************************
130
-    //               Order Status Service
131
-    //************************************************
129
+        //************************************************
130
+        //               Order Status Service
131
+        //************************************************
132 132
     
133
-    public static function getOrderDetail($status)
134
-    {
133
+        public static function getOrderDetail($status)
134
+        {
135 135
         return self::apiCall('getOrderDetail',$status,self::$statuswsdl);
136
-    }
136
+        }
137 137
     
138
-    public static function getOrderStatusByCriteria($criteria)
139
-    {
138
+        public static function getOrderStatusByCriteria($criteria)
139
+        {
140 140
         return self::apiCall('getOrderStatusByCriteria',$status,self::$statuswsdl);
141
-    }
141
+        }
142 142
     
143 143
     
144 144
     
Please login to merge, or discard this patch.