Passed
Push — master ( 459e9f...c1cdba )
by Nicholas
01:39
created
src/Atdconnect.php 1 patch
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -12,63 +12,63 @@
 block discarded – undo
12 12
 class Atdconnect
13 13
 {
14 14
     
15
-    protected $location;
15
+        protected $location;
16 16
     
17 17
 
18
-    public function __construct()
19
-    {
18
+        public function __construct()
19
+        {
20 20
         $config = include('config/config.php');
21 21
         $this->location = $config->location;
22
-    }
22
+        }
23 23
     
24
-    public function setLocation($location)
25
-    {
26
-	    $this->location = $location;
24
+        public function setLocation($location)
25
+        {
26
+                $this->location = $location;
27 27
         return $this->location;
28
-    }
29
-    
30
-    public function getLocation()
31
-    {
32
-	    return $this->location;
33
-    }
34
-    
35
-    public function setKeywordSearch($word)
36
-    {
37
-	    $search = new Arraybuilder();
38
-	    return $search->setKeywordSearch($word);
39
-    }
40
-    
41
-    public function setATDProductNumber($number)
42
-    {
43
-	    $search = new Arraybuilder();
44
-	    return $search->setATDProductNumber($number);
45
-    }
46
-    
47
-    public function setSizeSearch($size)
48
-    {
49
-	    $search = new Arraybuilder();
50
-	    return $search->setSizeSearch($size);
51
-    }
28
+        }
29
+    
30
+        public function getLocation()
31
+        {
32
+                return $this->location;
33
+        }
34
+    
35
+        public function setKeywordSearch($word)
36
+        {
37
+                $search = new Arraybuilder();
38
+                return $search->setKeywordSearch($word);
39
+        }
40
+    
41
+        public function setATDProductNumber($number)
42
+        {
43
+                $search = new Arraybuilder();
44
+                return $search->setATDProductNumber($number);
45
+        }
46
+    
47
+        public function setSizeSearch($size)
48
+        {
49
+                $search = new Arraybuilder();
50
+                return $search->setSizeSearch($size);
51
+        }
52 52
 
53
-    public function Brand() {
54
-    	return new Brand;
55
-    }
53
+        public function Brand() {
54
+                return new Brand;
55
+        }
56 56
     
57
-    public function Location() {
58
-    	return new Location;
59
-    }
57
+        public function Location() {
58
+                return new Location;
59
+        }
60 60
     
61
-    public function Order() {
62
-    	return new Order;
63
-    }
61
+        public function Order() {
62
+                return new Order;
63
+        }
64 64
     
65
-    public function Product() {
66
-    	return new Product;
67
-    }
65
+        public function Product() {
66
+                return new Product;
67
+        }
68 68
     
69
-    public function Status() {
70
-    	return new Status;
71
-    }
69
+        public function Status() {
70
+                return new Status;
71
+        }
72 72
 
73 73
     
74 74
     
Please login to merge, or discard this patch.