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