@@ -61,7 +61,9 @@ discard block |
||
61 | 61 | |
62 | 62 | $siblings = new \ArrayObject(); |
63 | 63 | |
64 | - foreach ($results as &$result) $result = $this->entity->create($result, $this->relations, $siblings); |
|
64 | + foreach ($results as &$result) { |
|
65 | + $result = $this->entity->create($result, $this->relations, $siblings); |
|
66 | + } |
|
65 | 67 | |
66 | 68 | return $results; |
67 | 69 | } |
@@ -78,13 +80,17 @@ discard block |
||
78 | 80 | private function processFilters($value) { |
79 | 81 | //When saving to a mapper with filters, write the filters back into the object being stored |
80 | 82 | foreach ($this->settings['filter'] as $key => $filterValue) { |
81 | - if (empty($value->$key) && !is_array($filterValue)) $value->$key = $filterValue; |
|
83 | + if (empty($value->$key) && !is_array($filterValue)) { |
|
84 | + $value->$key = $filterValue; |
|
85 | + } |
|
82 | 86 | } |
83 | 87 | return $value; |
84 | 88 | } |
85 | 89 | |
86 | 90 | public function offsetSet($offset, $valueObj) { |
87 | - if ($valueObj instanceof \Maphper\Relation) throw new \Exception(); |
|
91 | + if ($valueObj instanceof \Maphper\Relation) { |
|
92 | + throw new \Exception(); |
|
93 | + } |
|
88 | 94 | |
89 | 95 | //Extract private properties from the object |
90 | 96 | $propertyReader = new \Maphper\Lib\VisibilityOverride(); |
@@ -92,7 +98,9 @@ discard block |
||
92 | 98 | |
93 | 99 | $value = $this->processFilters($value); |
94 | 100 | $pk = $this->dataSource->getPrimaryKey(); |
95 | - if ($offset !== null) $value->{$pk[0]} = $offset; |
|
101 | + if ($offset !== null) { |
|
102 | + $value->{$pk[0]} = $offset; |
|
103 | + } |
|
96 | 104 | $valueCopy = clone $value; |
97 | 105 | $value = $this->entity->wrap($this->relations, $value); |
98 | 106 | $this->dataSource->save($value); |
@@ -103,7 +111,9 @@ discard block |
||
103 | 111 | } |
104 | 112 | |
105 | 113 | public function offsetExists($offset) { |
106 | - if (count($this->dataSource->getPrimaryKey()) > 1) return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey()); |
|
114 | + if (count($this->dataSource->getPrimaryKey()) > 1) { |
|
115 | + return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey()); |
|
116 | + } |
|
107 | 117 | if (!empty($this->settings['filter'])) { |
108 | 118 | $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
109 | 119 | return isset($data[0]); |
@@ -116,7 +126,9 @@ discard block |
||
116 | 126 | } |
117 | 127 | |
118 | 128 | public function offsetGet($offset) { |
119 | - if (count($this->dataSource->getPrimaryKey()) > 1) return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey()); |
|
129 | + if (count($this->dataSource->getPrimaryKey()) > 1) { |
|
130 | + return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey()); |
|
131 | + } |
|
120 | 132 | if (!empty($this->settings['filter'])) { |
121 | 133 | $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
122 | 134 | return $this->entity->create(isset($data[0]) ? $data[0] : null, $this->relations); |
@@ -127,11 +139,15 @@ discard block |
||
127 | 139 | public function __call($method, $args) { |
128 | 140 | if (array_key_exists($method, $this->settings)) { |
129 | 141 | $maphper = new Maphper($this->dataSource, $this->settings, $this->relations); |
130 | - if (is_array($maphper->settings[$method])) $maphper->settings[$method] = $args[0] + $maphper->settings[$method]; |
|
131 | - else $maphper->settings[$method] = $args[0]; |
|
142 | + if (is_array($maphper->settings[$method])) { |
|
143 | + $maphper->settings[$method] = $args[0] + $maphper->settings[$method]; |
|
144 | + } else { |
|
145 | + $maphper->settings[$method] = $args[0]; |
|
146 | + } |
|
132 | 147 | return $maphper; |
148 | + } else { |
|
149 | + throw new \Exception('Method Maphper::' . $method . ' does not exist'); |
|
133 | 150 | } |
134 | - else throw new \Exception('Method Maphper::' . $method . ' does not exist'); |
|
135 | 151 | } |
136 | 152 | |
137 | 153 | public function findAggregate($function, $field, $group = null) { |
@@ -23,7 +23,9 @@ |
||
23 | 23 | foreach ($relations as $name => $relation) { |
24 | 24 | if (isset($object->$name) && !($object->$name instanceof \Maphper\Relation) ) { |
25 | 25 | //After overwriting the relation, does the parent object ($object) need overwriting as well? |
26 | - if ($relation->overwrite($object, $object->$name)) $this->parent[] = $object; |
|
26 | + if ($relation->overwrite($object, $object->$name)) { |
|
27 | + $this->parent[] = $object; |
|
28 | + } |
|
27 | 29 | } |
28 | 30 | |
29 | 31 | $object->$name = $relation->getData($object, $siblings); |