Passed
Push — master ( 650392...c742f2 )
by Richard
02:47
created
Maphper/Lib/Sql/WhereBuilder.php 1 patch
Braces   +28 added lines, -11 removed lines patch added patch discarded remove patch
@@ -13,7 +13,9 @@  discard block
 block discarded – undo
13 13
             'Maphper\Lib\Sql\GeneralOperator'
14 14
         ];
15 15
 
16
-        foreach ($defaultConditionals as $conditional) $this->addConditional(new $conditional);
16
+        foreach ($defaultConditionals as $conditional) {
17
+        	$this->addConditional(new $conditional);
18
+        }
17 19
     }
18 20
 
19 21
     public function addConditional(WhereConditional $conditional) {
@@ -27,7 +29,9 @@  discard block
 block discarded – undo
27 29
         foreach ($fields as $key => $value) {
28 30
             $value = $this->convertDates($value);
29 31
 
30
-            if (is_object($value)) continue;
32
+            if (is_object($value)) {
33
+            	continue;
34
+            }
31 35
 			$result = $this->getResult($key, $value, $mode);
32 36
             $result = $this->fixDuplicateArgs($args, $result);
33 37
             $sql = array_merge($sql, (array)$result['sql']);
@@ -40,7 +44,9 @@  discard block
 block discarded – undo
40 44
     // Returns result with duplicate issues removed
41 45
     private function fixDuplicateArgs($origArgs, $result) {
42 46
         $duplicates = array_intersect_key($result['args'], $origArgs); // Holds all keys in results already in the args
43
-        if (count($duplicates) === 0) return $result;
47
+        if (count($duplicates) === 0) {
48
+        	return $result;
49
+        }
44 50
 
45 51
         foreach ($duplicates as $argKey => $argVal) {
46 52
             $valHash = substr(md5($argVal), 0, 5);
@@ -59,29 +65,40 @@  discard block
 block discarded – undo
59 65
      * Either get sql from a conditional or call createSql again because the mode needs to be changed
60 66
      */
61 67
     private function getResult($key, $value, $mode) {
62
-        if (is_numeric($key) && is_array($value)) return $this->createSql($value, $key);
68
+        if (is_numeric($key) && is_array($value)) {
69
+        	return $this->createSql($value, $key);
70
+        }
63 71
         return $this->getConditional($key, $value, $mode);
64 72
     }
65 73
 
66 74
     private function sqlArrayToString($sql, $mode) {
67
-        if (\Maphper\Maphper::FIND_OR & $mode) $query = implode(' OR  ', $sql);
68
-		else $query = implode(' AND ', $sql);
69
-		if (!empty($query)) $query = '(' . $query . ')';
75
+        if (\Maphper\Maphper::FIND_OR & $mode) {
76
+        	$query = implode(' OR  ', $sql);
77
+        } else {
78
+			$query = implode(' AND ', $sql);
79
+		}
80
+		if (!empty($query)) {
81
+			$query = '(' . $query . ')';
82
+		}
70 83
         return $query;
71 84
     }
72 85
 
73 86
     private function getConditional($key, $value, $mode) {
74 87
         foreach ($this->conditionals as $conditional) {
75
-            if ($conditional->matches($key, $value, $mode))
76
-                return $conditional->getSql($key, $value, $mode);
88
+            if ($conditional->matches($key, $value, $mode)) {
89
+                            return $conditional->getSql($key, $value, $mode);
90
+            }
77 91
         }
78 92
         throw new \Exception("Invalid WHERE query");
79 93
     }
80 94
 
81 95
     private function convertDates($value) {
82 96
         if ($value instanceof \DateTimeInterface) {
83
-            if ($value->format('H:i:s')  == '00:00:00') $value = $value->format('Y-m-d');
84
-            else $value = $value->format('Y-m-d H:i:s');
97
+            if ($value->format('H:i:s')  == '00:00:00') {
98
+            	$value = $value->format('Y-m-d');
99
+            } else {
100
+            	$value = $value->format('Y-m-d H:i:s');
101
+            }
85 102
         }
86 103
         return $value;
87 104
     }
Please login to merge, or discard this patch.
Maphper/Lib/DateInjector.php 1 patch
Braces   +27 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,26 +11,35 @@  discard block
 block discarded – undo
11 11
 
12 12
 	public function replaceDates($obj, $reset = true) {
13 13
 		//prevent infinite recursion, only process each object once
14
-		if ($this->checkCache($obj, $reset)) return $obj;
14
+		if ($this->checkCache($obj, $reset)) {
15
+			return $obj;
16
+		}
15 17
 
16
-		if ($this->isIterable($obj)) foreach ($obj as &$o) $o = $this->replaceDates($o, false);
17
-		if ($this->isPossiblyDateString($obj)) $obj = $this->tryToGetDateObjFromString($obj);
18
+		if ($this->isIterable($obj)) {
19
+			foreach ($obj as &$o) $o = $this->replaceDates($o, false);
20
+		}
21
+		if ($this->isPossiblyDateString($obj)) {
22
+			$obj = $this->tryToGetDateObjFromString($obj);
23
+		}
18 24
 		return $obj;
19 25
 	}
20 26
 
21 27
     private function tryToGetDateObjFromString($obj) {
22 28
         try {
23 29
             $date = new \DateTime($obj);
24
-			if ($this->dateMatchesFormats($date, $obj)) $obj = $date;
25
-        }
26
-        catch (\Exception $e) {	//Doesn't need to do anything as the try/catch is working out whether $obj is a date
30
+			if ($this->dateMatchesFormats($date, $obj)) {
31
+				$obj = $date;
32
+			}
33
+        } catch (\Exception $e) {	//Doesn't need to do anything as the try/catch is working out whether $obj is a date
27 34
         }
28 35
         return $obj;
29 36
     }
30 37
 
31 38
 	private function dateMatchesFormats($date, $str) {
32 39
 		foreach ($this->dateFormats as list($format, $len)) {
33
-			if ($date->format($format) == substr($str, 0, $len)) return true;
40
+			if ($date->format($format) == substr($str, 0, $len)) {
41
+				return true;
42
+			}
34 43
 		}
35 44
 		return false;
36 45
 	}
@@ -44,11 +53,18 @@  discard block
 block discarded – undo
44 53
     }
45 54
 
46 55
 	private function checkCache($obj, $reset) {
47
-		if ($reset) $this->processCache = new \SplObjectStorage();
48
-        if (!is_object($obj)) return false;
56
+		if ($reset) {
57
+			$this->processCache = new \SplObjectStorage();
58
+		}
59
+        if (!is_object($obj)) {
60
+        	return false;
61
+        }
49 62
 
50
-		if ($this->processCache->contains($obj)) return $obj;
51
-		else $this->processCache->attach($obj, true);
63
+		if ($this->processCache->contains($obj)) {
64
+			return $obj;
65
+		} else {
66
+			$this->processCache->attach($obj, true);
67
+		}
52 68
 
53 69
 		return false;
54 70
 	}
Please login to merge, or discard this patch.
Maphper/Optimiser/MySql.php 1 patch
Braces   +13 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,16 +11,21 @@  discard block
 block discarded – undo
11 11
 		foreach ($columns as $column) {
12 12
 			$parts = explode('.', $column->Field_name);
13 13
 			$name = $this->quote(end($parts));
14
-			if ($column->Min_value === null && $column->Max_value === null) $this->pdo->query('ALTER TABLE ' . $this->quote($table) . ' DROP COLUMN ' . $name);
15
-			else {
14
+			if ($column->Min_value === null && $column->Max_value === null) {
15
+				$this->pdo->query('ALTER TABLE ' . $this->quote($table) . ' DROP COLUMN ' . $name);
16
+			} else {
16 17
 				$type = $column->Optimal_fieldtype;
17 18
 				if ($column->Max_length < 11) {
18 19
 					//Check for dates
19 20
 					$count = $this->pdo->query('SELECT count(*) as `count` FROM ' . $this->quote($table) . ' WHERE STR_TO_DATE(' . $name . ',\'%Y-%m-%d %H:%i:s\') IS NULL OR STR_TO_DATE(' . $name . ',\'%Y-%m-%d %H:%i:s\') != ' . $name . ' LIMIT 1')->fetch(\PDO::FETCH_OBJ)->count;
20
-					if ($count == 0) $type = 'DATETIME';
21
+					if ($count == 0) {
22
+						$type = 'DATETIME';
23
+					}
21 24
 
22 25
 					$count = $this->pdo->query('SELECT count(*) as `count` FROM ' . $this->quote($table) . ' WHERE STR_TO_DATE(' . $name . ',\'%Y-%m-%d\') IS NULL OR STR_TO_DATE(' . $name . ',\'%Y-%m-%d\') != ' . $name . ' LIMIT 1')->fetch(\PDO::FETCH_OBJ)->count;
23
-					if ($count == 0) $type = 'DATE';
26
+					if ($count == 0) {
27
+						$type = 'DATE';
28
+					}
24 29
 				}
25 30
 
26 31
 				//If it's text, work out if it would be better to be something else
@@ -30,8 +35,7 @@  discard block
 block discarded – undo
30 35
 					if ($count == 0) {
31 36
 						$type = 'INT(11)';
32 37
 						$runAgain = true;
33
-					}
34
-					else {
38
+					} else {
35 39
 						//See if it's decimal
36 40
 						$count = $this->pdo->query('SELECT count(*) FROM ' . $table . ' WHERE concat(\'\', ' . $name . ' * 1) != ' . $name . ')')->fetch(\PDO::FETCH_OBJ)->count;
37 41
 						if ($count == 0) {
@@ -45,6 +49,8 @@  discard block
 block discarded – undo
45 49
 			}
46 50
 		}
47 51
 		//Sometimes a second pass is needed, if a column has gone from varchar -> int(11) a better int type may be needed
48
-		if ($runAgain) $this->optimiseColumns($table);
52
+		if ($runAgain) {
53
+			$this->optimiseColumns($table);
54
+		}
49 55
 	}
50 56
 }
51 57
\ No newline at end of file
Please login to merge, or discard this patch.
Maphper/Relation/Many.php 1 patch
Braces   +14 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,7 +6,9 @@  discard block
 block discarded – undo
6 6
 	private $localField;
7 7
 	
8 8
 	public function __construct(\Maphper\Maphper $mapper, $parentField, $localField, array $critiera = []) {
9
-		if ($critiera) $mapper->filter($critiera);
9
+		if ($critiera) {
10
+			$mapper->filter($critiera);
11
+		}
10 12
 		$this->mapper = $mapper;
11 13
 		$this->parentField = $parentField;
12 14
 		$this->localField = $localField;		
@@ -14,17 +16,24 @@  discard block
 block discarded – undo
14 16
 	
15 17
 	
16 18
 	public function getData($parentObject) {
17
-		if (!isset($parentObject->{$this->parentField})) $mapper = $this->mapper;
18
-		else $mapper = $this->mapper->filter([$this->localField => $parentObject->{$this->parentField}]);
19
+		if (!isset($parentObject->{$this->parentField})) {
20
+			$mapper = $this->mapper;
21
+		} else {
22
+			$mapper = $this->mapper->filter([$this->localField => $parentObject->{$this->parentField}]);
23
+		}
19 24
 		
20 25
 		return $mapper;
21 26
 	}
22 27
 
23 28
 	
24 29
 	public function overwrite($key, &$mapper) {
25
-		if (!isset($key->{$this->parentField})) return false;
30
+		if (!isset($key->{$this->parentField})) {
31
+			return false;
32
+		}
26 33
 		foreach ($mapper as $k => $val) {
27
-			if (!empty($val->{$this->localField}) && $val->{$this->localField} == $key->{$this->parentField}) continue;
34
+			if (!empty($val->{$this->localField}) && $val->{$this->localField} == $key->{$this->parentField}) {
35
+				continue;
36
+			}
28 37
 			$val->{$this->localField} = $key->{$this->parentField};
29 38
 			$this->mapper[] = $val;
30 39
 		}
Please login to merge, or discard this patch.
Maphper/Relation/ManyManyIterator.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,9 @@
 block discarded – undo
12 12
   }
13 13
 
14 14
   public function current() {
15
-    if ($this->intermediateName) return $this->iterator->current()->{$this->intermediateName};
15
+    if ($this->intermediateName) {
16
+    	return $this->iterator->current()->{$this->intermediateName};
17
+    }
16 18
 		return $this->iterator->current();
17 19
 	}
18 20
 
Please login to merge, or discard this patch.
Maphper/Relation/One.php 1 patch
Braces   +20 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,7 +9,9 @@  discard block
 block discarded – undo
9 9
 	private $siblings = [];
10 10
 
11 11
 	public function __construct(\Maphper\Maphper $mapper, $parentField, $localField, array $criteria = []) {
12
-        if ($criteria) $mapper = $mapper->filter($this->criteira);
12
+        if ($criteria) {
13
+        	$mapper = $mapper->filter($this->criteira);
14
+        }
13 15
 		$this->mapper = $mapper;
14 16
 		$this->parentField = $parentField;
15 17
 		$this->localField = $localField;
@@ -29,7 +31,9 @@  discard block
 block discarded – undo
29 31
 	private function lazyLoad() {
30 32
 		if (!isset($this->data)) {
31 33
 
32
-			if ($this->parentObject == null) throw new \Exception('Error, no object set');
34
+			if ($this->parentObject == null) {
35
+				throw new \Exception('Error, no object set');
36
+			}
33 37
 
34 38
 			$this->eagerLoad();
35 39
 
@@ -41,8 +45,10 @@  discard block
 block discarded – undo
41 45
 		$recordsToLoad = [];
42 46
 		//Get a list of records by FK to eager load
43 47
 		foreach ($this->siblings as $sibling) {
44
-			if ($sibling->parentField === $this->parentField) // Ensure that it is only loading records from the same type of relation
48
+			if ($sibling->parentField === $this->parentField) {
49
+				// Ensure that it is only loading records from the same type of relation
45 50
 				$recordsToLoad[] = $sibling->parentObject->{$sibling->parentField};
51
+			}
46 52
 		}
47 53
 
48 54
 		$recordsToLoad = array_unique($recordsToLoad);
@@ -59,7 +65,9 @@  discard block
 block discarded – undo
59 65
 		}
60 66
 
61 67
 		foreach ($this->siblings as $sibling) {
62
-            if (isset($cache[$sibling->parentObject->{$this->parentField}])) $sibling->data = $cache[$sibling->parentObject->{$this->parentField}];
68
+            if (isset($cache[$sibling->parentObject->{$this->parentField}])) {
69
+            	$sibling->data = $cache[$sibling->parentObject->{$this->parentField}];
70
+            }
63 71
 		}
64 72
 		/*
65 73
 		foreach ($this->siblings as $sibling) {
@@ -70,13 +78,18 @@  discard block
 block discarded – undo
70 78
     }
71 79
 
72 80
 	public function __call($func, array $args = []) {
73
-		if ($this->lazyLoad() == null) return '';
81
+		if ($this->lazyLoad() == null) {
82
+			return '';
83
+		}
74 84
 		return call_user_func_array([$this->lazyLoad(), $func], $args);
75 85
 	}
76 86
 
77 87
 	public function __get($name) {
78
-		if ($this->lazyLoad()) return $this->lazyLoad()->$name;
79
-        else return null;
88
+		if ($this->lazyLoad()) {
89
+			return $this->lazyLoad()->$name;
90
+		} else {
91
+        	return null;
92
+        }
80 93
 	}
81 94
 
82 95
 	public function __isset($name) {
Please login to merge, or discard this patch.
Maphper/Relation/ManyMany.php 1 patch
Braces   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,8 +32,12 @@  discard block
 block discarded – undo
32 32
 		list($relatedField, $valueField, $mapper) = $this->getOtherFieldNameInfo();
33 33
 		$this->results = $data;
34 34
 		$this->object = $parentObject;
35
-		if (empty($parentObject->{$relatedField})) return;
36
-		foreach ($data as $dt) $this[] = $dt;
35
+		if (empty($parentObject->{$relatedField})) {
36
+			return;
37
+		}
38
+		foreach ($data as $dt) {
39
+			$this[] = $dt;
40
+		}
37 41
 	}
38 42
 
39 43
 	//bit hacky, breaking encapsulation, but simplest way to work out the info for the other side of the many:many relationship.
@@ -88,8 +92,9 @@  discard block
 block discarded – undo
88 92
 
89 93
 	public function offsetSet($name, $value) {
90 94
 		list($relatedField, $valueField, $mapper) = $this->getOtherFieldNameInfo();
91
-		if ($this->autoTraverse) $this->offsetSetAutotraverse($value, $relatedField, $valueField);
92
-		else if ($this->doUpdateInterMapper($value, $relatedField, $valueField)) {
95
+		if ($this->autoTraverse) {
96
+			$this->offsetSetAutotraverse($value, $relatedField, $valueField);
97
+		} else if ($this->doUpdateInterMapper($value, $relatedField, $valueField)) {
93 98
             $record = $value;
94 99
 			$record->{$this->parentField} = $value->{$this->intermediateName}->{$this->localField};
95 100
 			$record->$valueField = $this->object->{$relatedField};
Please login to merge, or discard this patch.
Maphper/Maphper.php 1 patch
Braces   +31 added lines, -12 removed lines patch added patch discarded remove patch
@@ -60,7 +60,9 @@  discard block
 block discarded – undo
60 60
 
61 61
 		$siblings = new \ArrayObject();
62 62
 
63
-		foreach ($results as &$result) $result = $this->entity->create($result, $this->relations, $siblings);
63
+		foreach ($results as &$result) {
64
+			$result = $this->entity->create($result, $this->relations, $siblings);
65
+		}
64 66
 
65 67
 		return $results;
66 68
 	}
@@ -77,13 +79,17 @@  discard block
 block discarded – undo
77 79
 	private function processFilters($value) {
78 80
 		//When saving to a mapper with filters, write the filters back into the object being stored
79 81
 		foreach ($this->settings['filter'] as $key => $filterValue) {
80
-			if (empty($value->$key) && !is_array($filterValue)) $value->$key = $filterValue;
82
+			if (empty($value->$key) && !is_array($filterValue)) {
83
+				$value->$key = $filterValue;
84
+			}
81 85
 		}
82 86
 		return $value;
83 87
 	}
84 88
 
85 89
 	public function offsetSet($offset, $valueObj) {
86
-		if ($valueObj instanceof \Maphper\Relation) throw new \Exception();
90
+		if ($valueObj instanceof \Maphper\Relation) {
91
+			throw new \Exception();
92
+		}
87 93
 
88 94
 		//Extract private properties from the object
89 95
 		$visibilityOverride = new \Maphper\Lib\VisibilityOverride($valueObj);
@@ -91,7 +97,9 @@  discard block
 block discarded – undo
91 97
 
92 98
 		$value = $this->processFilters($value);
93 99
 		$pk = $this->dataSource->getPrimaryKey();
94
-		if ($offset !== null) $value->{$pk[0]} = $offset;
100
+		if ($offset !== null) {
101
+			$value->{$pk[0]} = $offset;
102
+		}
95 103
 		$valueCopy = $this->removeRelations(clone $value, $pk);
96 104
 		$value = $this->entity->wrap($this->relations, $value);
97 105
 		$this->dataSource->save($value);
@@ -100,15 +108,20 @@  discard block
 block discarded – undo
100 108
 	}
101 109
 
102 110
 	private function removeRelations($obj, $pk) { // Prevent saving ManyMany twice except when pk isn't initially set
103
-		foreach ($this->relations as $name => $relation)
104
-			if ($relation instanceOf \Maphper\Relation\ManyMany && isset($obj->$name) && !empty($obj->{$pk[0]})) unset($obj->$name);
111
+		foreach ($this->relations as $name => $relation) {
112
+					if ($relation instanceOf \Maphper\Relation\ManyMany && isset($obj->$name) && !empty($obj->{$pk[0]})) unset($obj->$name);
113
+		}
105 114
 
106
-		if (empty($obj->{$pk[0]})) unset($obj->{$pk[0]});
115
+		if (empty($obj->{$pk[0]})) {
116
+			unset($obj->{$pk[0]});
117
+		}
107 118
 		return $obj;
108 119
 	}
109 120
 
110 121
 	public function offsetExists($offset) {
111
-		if (count($this->dataSource->getPrimaryKey()) > 1) return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey());
122
+		if (count($this->dataSource->getPrimaryKey()) > 1) {
123
+			return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey());
124
+		}
112 125
         if (!empty($this->settings['filter'])) {
113 126
             $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset]));
114 127
             return isset($data[0]);
@@ -121,7 +134,9 @@  discard block
 block discarded – undo
121 134
 	}
122 135
 
123 136
 	public function offsetGet($offset) {
124
-		if (count($this->dataSource->getPrimaryKey()) > 1) return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey());
137
+		if (count($this->dataSource->getPrimaryKey()) > 1) {
138
+			return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey());
139
+		}
125 140
         if (!empty($this->settings['filter'])) {
126 141
             $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset]));
127 142
             return $this->entity->create(isset($data[0]) ? $data[0] : null, $this->relations);
@@ -132,11 +147,15 @@  discard block
 block discarded – undo
132 147
 	public function __call($method, $args) {
133 148
 		if (array_key_exists($method, $this->settings)) {
134 149
 			$maphper = new Maphper($this->dataSource, $this->settings, $this->relations);
135
-			if (is_array($maphper->settings[$method])) $maphper->settings[$method] = $args[0] + $maphper->settings[$method];
136
-			else $maphper->settings[$method] = $args[0];
150
+			if (is_array($maphper->settings[$method])) {
151
+				$maphper->settings[$method] = $args[0] + $maphper->settings[$method];
152
+			} else {
153
+				$maphper->settings[$method] = $args[0];
154
+			}
137 155
 			return $maphper;
156
+		} else {
157
+			throw new \Exception('Method Maphper::' . $method . ' does not exist');
138 158
 		}
139
-		else throw new \Exception('Method Maphper::' . $method . ' does not exist');
140 159
 	}
141 160
 
142 161
 	public function findAggregate($function, $field, $group = null) {
Please login to merge, or discard this patch.