@@ -33,7 +33,7 @@ |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | private function getSearchFieldFunction($fields, $mode) { |
| 36 | - return function ($data) use ($fields, $mode) { |
|
| 36 | + return function($data) use ($fields, $mode) { |
|
| 37 | 37 | foreach ($fields as $key => $val) { |
| 38 | 38 | $currentFieldResult = $this->getIfFieldMatches($key, $val, $data, $mode); |
| 39 | 39 | |
@@ -2,112 +2,112 @@ |
||
| 2 | 2 | namespace Maphper\DataSource; |
| 3 | 3 | use Maphper\Maphper; |
| 4 | 4 | class Mock implements \Maphper\DataSource { |
| 5 | - private $data; |
|
| 6 | - private $id; |
|
| 5 | + private $data; |
|
| 6 | + private $id; |
|
| 7 | 7 | |
| 8 | - public function __construct(\ArrayObject $data, $id) { |
|
| 9 | - $this->data = $data; |
|
| 10 | - $this->id = is_array($id) ? $id : [$id]; |
|
| 11 | - } |
|
| 8 | + public function __construct(\ArrayObject $data, $id) { |
|
| 9 | + $this->data = $data; |
|
| 10 | + $this->id = is_array($id) ? $id : [$id]; |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getPrimaryKey() { |
|
| 14 | - return $this->id; |
|
| 15 | - } |
|
| 13 | + public function getPrimaryKey() { |
|
| 14 | + return $this->id; |
|
| 15 | + } |
|
| 16 | 16 | |
| 17 | - public function findById($id) { |
|
| 18 | - return isset($this->data[$id]) ? (array)$this->data[$id] : []; |
|
| 19 | - } |
|
| 17 | + public function findById($id) { |
|
| 18 | + return isset($this->data[$id]) ? (array)$this->data[$id] : []; |
|
| 19 | + } |
|
| 20 | 20 | |
| 21 | - public function findByField(array $fields, $options = []) { |
|
| 22 | - $array = iterator_to_array($this->data->getIterator()); |
|
| 23 | - $filteredArray = array_filter($array, $this->getSearchFieldFunction($fields, \Maphper\Maphper::FIND_EXACT | \Maphper\Maphper::FIND_AND)); |
|
| 24 | - // Need to reset indexes |
|
| 25 | - $filteredArray = array_values($filteredArray); |
|
| 26 | - if (isset($options['order'])) { |
|
| 27 | - list($columns, $order) = explode(' ', $options['order']); |
|
| 28 | - usort($filteredArray, $this->getOrderFunction($order, $columns)); |
|
| 29 | - } |
|
| 30 | - if (isset($options['offset'])) $filteredArray = array_slice($filteredArray, $options['offset']); |
|
| 31 | - if (isset($options['limit'])) $filteredArray = array_slice($filteredArray, 0, $options['limit']); |
|
| 32 | - return $filteredArray; |
|
| 33 | - } |
|
| 21 | + public function findByField(array $fields, $options = []) { |
|
| 22 | + $array = iterator_to_array($this->data->getIterator()); |
|
| 23 | + $filteredArray = array_filter($array, $this->getSearchFieldFunction($fields, \Maphper\Maphper::FIND_EXACT | \Maphper\Maphper::FIND_AND)); |
|
| 24 | + // Need to reset indexes |
|
| 25 | + $filteredArray = array_values($filteredArray); |
|
| 26 | + if (isset($options['order'])) { |
|
| 27 | + list($columns, $order) = explode(' ', $options['order']); |
|
| 28 | + usort($filteredArray, $this->getOrderFunction($order, $columns)); |
|
| 29 | + } |
|
| 30 | + if (isset($options['offset'])) $filteredArray = array_slice($filteredArray, $options['offset']); |
|
| 31 | + if (isset($options['limit'])) $filteredArray = array_slice($filteredArray, 0, $options['limit']); |
|
| 32 | + return $filteredArray; |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - private function getSearchFieldFunction($fields, $mode) { |
|
| 36 | - return function ($data) use ($fields, $mode) { |
|
| 37 | - foreach ($fields as $key => $val) { |
|
| 38 | - $currentFieldResult = $this->getIfFieldMatches($key, $val, $data, $mode); |
|
| 35 | + private function getSearchFieldFunction($fields, $mode) { |
|
| 36 | + return function ($data) use ($fields, $mode) { |
|
| 37 | + foreach ($fields as $key => $val) { |
|
| 38 | + $currentFieldResult = $this->getIfFieldMatches($key, $val, $data, $mode); |
|
| 39 | 39 | |
| 40 | - if (Maphper::FIND_OR & $mode && $currentFieldResult === true) return true; |
|
| 41 | - else if (!(Maphper::FIND_OR & $mode) && $currentFieldResult === false) return false; |
|
| 42 | - } |
|
| 43 | - return !(Maphper::FIND_OR & $mode); |
|
| 44 | - }; |
|
| 45 | - } |
|
| 40 | + if (Maphper::FIND_OR & $mode && $currentFieldResult === true) return true; |
|
| 41 | + else if (!(Maphper::FIND_OR & $mode) && $currentFieldResult === false) return false; |
|
| 42 | + } |
|
| 43 | + return !(Maphper::FIND_OR & $mode); |
|
| 44 | + }; |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - private function getIfFieldMatches($key, $val, $data, $mode) { |
|
| 48 | - if (is_numeric($key) && is_array($val)) { |
|
| 49 | - return $this->getSearchFieldFunction($val, $key)($data); |
|
| 50 | - } |
|
| 51 | - else if (!isset($data->$key)) return false; |
|
| 52 | - else if (!(Maphper::FIND_BETWEEN & $mode) && !is_numeric($key) && is_array($val)) |
|
| 53 | - return in_array($data->$key, $val); |
|
| 54 | - else |
|
| 55 | - return $this->processFilter($mode, $val, $data->$key); |
|
| 56 | - } |
|
| 47 | + private function getIfFieldMatches($key, $val, $data, $mode) { |
|
| 48 | + if (is_numeric($key) && is_array($val)) { |
|
| 49 | + return $this->getSearchFieldFunction($val, $key)($data); |
|
| 50 | + } |
|
| 51 | + else if (!isset($data->$key)) return false; |
|
| 52 | + else if (!(Maphper::FIND_BETWEEN & $mode) && !is_numeric($key) && is_array($val)) |
|
| 53 | + return in_array($data->$key, $val); |
|
| 54 | + else |
|
| 55 | + return $this->processFilter($mode, $val, $data->$key); |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | 58 | public function findAggregate($function, $field, $group = null, array $criteria = [], array $options = []) { |
| 59 | - return $function($this->findByField($criteria)); |
|
| 60 | - } |
|
| 59 | + return $function($this->findByField($criteria)); |
|
| 60 | + } |
|
| 61 | 61 | |
| 62 | 62 | public function deleteById($id) { |
| 63 | - unset($this->data[$id]); |
|
| 64 | - } |
|
| 63 | + unset($this->data[$id]); |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | 66 | public function deleteByField(array $fields) { |
| 67 | - foreach ($this->findByField($fields) as $val) unset($this->data[$val->{$this->id[0]}]); |
|
| 68 | - } |
|
| 67 | + foreach ($this->findByField($fields) as $val) unset($this->data[$val->{$this->id[0]}]); |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - public function save($data) { |
|
| 71 | - if (isset($data->{$this->id[0]})) { |
|
| 72 | - $id = $data->{$this->id[0]}; |
|
| 73 | - } |
|
| 74 | - else { |
|
| 75 | - $id = count($this->data); |
|
| 76 | - $data->{$this->id[0]} = $id; |
|
| 77 | - } |
|
| 70 | + public function save($data) { |
|
| 71 | + if (isset($data->{$this->id[0]})) { |
|
| 72 | + $id = $data->{$this->id[0]}; |
|
| 73 | + } |
|
| 74 | + else { |
|
| 75 | + $id = count($this->data); |
|
| 76 | + $data->{$this->id[0]} = $id; |
|
| 77 | + } |
|
| 78 | 78 | |
| 79 | - $this->data[$id] = (object)array_merge($this->findById($id), (array)$data); |
|
| 80 | - } |
|
| 79 | + $this->data[$id] = (object)array_merge($this->findById($id), (array)$data); |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - public function getErrors() { |
|
| 83 | - return []; |
|
| 84 | - } |
|
| 82 | + public function getErrors() { |
|
| 83 | + return []; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - private function getOrderFunction($order, $columns) { |
|
| 87 | - return function($a, $b) use ($order, $columns) { |
|
| 88 | - foreach (explode(',', $columns) as $column) { |
|
| 89 | - $aColumn = $a->$column; |
|
| 90 | - $bColumn = $b->$column; |
|
| 91 | - if ($aColumn === $bColumn) { |
|
| 92 | - $sortVal = 0; |
|
| 93 | - continue; |
|
| 94 | - } |
|
| 95 | - else $sortVal = ($aColumn < $bColumn) ? -1 : 1; |
|
| 96 | - break; |
|
| 97 | - } |
|
| 98 | - if ($order === 'desc') return -$sortVal; |
|
| 99 | - else return $sortVal; |
|
| 100 | - }; |
|
| 101 | - } |
|
| 86 | + private function getOrderFunction($order, $columns) { |
|
| 87 | + return function($a, $b) use ($order, $columns) { |
|
| 88 | + foreach (explode(',', $columns) as $column) { |
|
| 89 | + $aColumn = $a->$column; |
|
| 90 | + $bColumn = $b->$column; |
|
| 91 | + if ($aColumn === $bColumn) { |
|
| 92 | + $sortVal = 0; |
|
| 93 | + continue; |
|
| 94 | + } |
|
| 95 | + else $sortVal = ($aColumn < $bColumn) ? -1 : 1; |
|
| 96 | + break; |
|
| 97 | + } |
|
| 98 | + if ($order === 'desc') return -$sortVal; |
|
| 99 | + else return $sortVal; |
|
| 100 | + }; |
|
| 101 | + } |
|
| 102 | 102 | |
| 103 | - private function processFilter($mode, $expected, $actual) { |
|
| 104 | - if (Maphper::FIND_NOT & $mode) return $expected != $actual; |
|
| 105 | - else if (Maphper::FIND_GREATER & $mode && Maphper::FIND_EXACT & $mode) return $expected <= $actual; |
|
| 106 | - else if (Maphper::FIND_LESS & $mode && Maphper::FIND_EXACT & $mode) return $expected >= $actual; |
|
| 107 | - else if (Maphper::FIND_GREATER & $mode) return $expected < $actual; |
|
| 108 | - else if (Maphper::FIND_LESS & $mode) return $expected > $actual; |
|
| 109 | - else if (Maphper::FIND_BETWEEN & $mode) return $expected[0] <= $actual && $actual <= $expected[1]; |
|
| 110 | - else if (Maphper::FIND_NOCASE & $mode) return strtolower($expected) == strtolower($actual); |
|
| 111 | - return $expected == $actual; |
|
| 112 | - } |
|
| 103 | + private function processFilter($mode, $expected, $actual) { |
|
| 104 | + if (Maphper::FIND_NOT & $mode) return $expected != $actual; |
|
| 105 | + else if (Maphper::FIND_GREATER & $mode && Maphper::FIND_EXACT & $mode) return $expected <= $actual; |
|
| 106 | + else if (Maphper::FIND_LESS & $mode && Maphper::FIND_EXACT & $mode) return $expected >= $actual; |
|
| 107 | + else if (Maphper::FIND_GREATER & $mode) return $expected < $actual; |
|
| 108 | + else if (Maphper::FIND_LESS & $mode) return $expected > $actual; |
|
| 109 | + else if (Maphper::FIND_BETWEEN & $mode) return $expected[0] <= $actual && $actual <= $expected[1]; |
|
| 110 | + else if (Maphper::FIND_NOCASE & $mode) return strtolower($expected) == strtolower($actual); |
|
| 111 | + return $expected == $actual; |
|
| 112 | + } |
|
| 113 | 113 | } |
@@ -19,11 +19,11 @@ discard block |
||
| 19 | 19 | //For dates with times set, search on time, if the time is not set, search on date only. |
| 20 | 20 | //E.g. searching for all records posted on '2015-11-14' should return all records that day, not just the ones posted at 00:00:00 on that day |
| 21 | 21 | if ($value instanceof \DateTime) { |
| 22 | - if ($value->format('H:i:s') == '00:00:00') $value = $value->format('Y-m-d'); |
|
| 22 | + if ($value->format('H:i:s') == '00:00:00') $value = $value->format('Y-m-d'); |
|
| 23 | 23 | else $value = $value->format('Y-m-d H:i:s'); |
| 24 | 24 | } |
| 25 | 25 | if (is_object($value)) continue; |
| 26 | - if ($prependField){ |
|
| 26 | + if ($prependField) { |
|
| 27 | 27 | $sql[] = $this->quote($field) . ' = :' . $field; |
| 28 | 28 | } else { |
| 29 | 29 | $sql[] = ':' . $field; |
@@ -35,13 +35,13 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | public function insert($table, $data) { |
| 37 | 37 | $query = $this->buildSaveQuery($data); |
| 38 | - return new Query('INSERT INTO ' . $this->quote($table) . ' (' .implode(', ', array_keys($query['args'])).') VALUES ( ' . implode(', ', $query['sql']). ' )', $query['args']); |
|
| 38 | + return new Query('INSERT INTO ' . $this->quote($table) . ' (' . implode(', ', array_keys($query['args'])) . ') VALUES ( ' . implode(', ', $query['sql']) . ' )', $query['args']); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | public function update($table, array $primaryKey, $data) { |
| 42 | 42 | $query = $this->buildSaveQuery($data, true); |
| 43 | 43 | $where = []; |
| 44 | - foreach($primaryKey as $field) $where[] = $this->quote($field) . ' = :' . $field; |
|
| 45 | - return new Query('UPDATE ' . $this->quote($table) . ' SET ' . implode(', ', $query['sql']). ' WHERE '. implode(' AND ', $where), $query['args']); |
|
| 44 | + foreach ($primaryKey as $field) $where[] = $this->quote($field) . ' = :' . $field; |
|
| 45 | + return new Query('UPDATE ' . $this->quote($table) . ' SET ' . implode(', ', $query['sql']) . ' WHERE ' . implode(' AND ', $where), $query['args']); |
|
| 46 | 46 | } |
| 47 | 47 | } |
@@ -24,8 +24,8 @@ discard block |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | public function offsetGet($key) { |
| 27 | - $depth = $this->getDepth()+1; |
|
| 28 | - if (count($this->primaryKey)-1 == $depth) return $this->mapper->filter([$this->primaryKey[$depth] => $key])->item(0); |
|
| 27 | + $depth = $this->getDepth() + 1; |
|
| 28 | + if (count($this->primaryKey) - 1 == $depth) return $this->mapper->filter([$this->primaryKey[$depth] => $key])->item(0); |
|
| 29 | 29 | else return new MultiPk($this->mapper, $key, $this->primaryKey, $this); |
| 30 | 30 | } |
| 31 | 31 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | public function offsetUnset($key) { |
| 46 | 46 | $keys = $this->primaryKey; |
| 47 | - $this->mapper->filter([ array_pop($keys) => $key])->delete(); |
|
| 47 | + $this->mapper->filter([array_pop($keys) => $key])->delete(); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | public function offsetExists($key) { |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | private $parent; |
| 5 | 5 | private $primaryKey; |
| 6 | 6 | private $lookup; |
| 7 | - private $mapper; |
|
| 7 | + private $mapper; |
|
| 8 | 8 | |
| 9 | 9 | public function __construct(Maphper $mapper, $lookup, array $primaryKey, MultiPk $parent = null) { |
| 10 | 10 | $this->parent = $parent; |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | //bit hacky, breaking encapsulation, but simplest way to work out the info for the other side of the many:many relationship. |
| 38 | 38 | private function getOtherFieldNameInfo() { |
| 39 | 39 | if ($this->otherInfo == null) { |
| 40 | - $propertyReader = function($name) {return $this->$name; }; |
|
| 40 | + $propertyReader = function($name) {return $this->$name; }; |
|
| 41 | 41 | |
| 42 | 42 | $reader = $propertyReader->bindTo($this->intermediateMapper, $this->intermediateMapper); |
| 43 | 43 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $propertyReader = $propertyReader->bindTo($relation, $relation); |
| 46 | 46 | if ($propertyReader('parentField') != $this->parentField) { |
| 47 | 47 | $relation = $relation->getData($this->object); |
| 48 | - $this->otherInfo = [$propertyReader('localField'), $propertyReader('parentField'), $propertyReader('mapper')]; |
|
| 48 | + $this->otherInfo = [$propertyReader('localField'), $propertyReader('parentField'), $propertyReader('mapper')]; |
|
| 49 | 49 | } |
| 50 | 50 | } |
| 51 | 51 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | list($relatedField, $valueField, $mapper) = $this->getOtherFieldNameInfo(); |
| 89 | 89 | if ($this->autoTraverse) { |
| 90 | 90 | $record = new \stdClass; |
| 91 | - $record->{$this->parentField} = $value->{$this->localField}; |
|
| 91 | + $record->{$this->parentField} = $value->{$this->localField}; |
|
| 92 | 92 | $record->$valueField = $this->object->{$relatedField}; |
| 93 | 93 | $this->intermediateMapper[] = $record; |
| 94 | 94 | |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | |
| 75 | 75 | public function __get($name) { |
| 76 | 76 | if ($this->lazyLoad()) return $this->lazyLoad()->$name; |
| 77 | - else return null; |
|
| 77 | + else return null; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | public function __isset($name) { |
@@ -7,17 +7,17 @@ |
||
| 7 | 7 | private $intermediateName; |
| 8 | 8 | |
| 9 | 9 | public function __construct(\Maphper\Iterator $iterator, $intermediateName = null) { |
| 10 | - $this->iterator = $iterator; |
|
| 11 | - $this->intermediateName = $intermediateName; |
|
| 10 | + $this->iterator = $iterator; |
|
| 11 | + $this->intermediateName = $intermediateName; |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | public function current() { |
| 15 | - if ($this->intermediateName) return $this->iterator->current()->{$this->intermediateName}; |
|
| 15 | + if ($this->intermediateName) return $this->iterator->current()->{$this->intermediateName}; |
|
| 16 | 16 | return $this->iterator->current(); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | public function key() { |
| 20 | - return $this->iterator->key(); |
|
| 20 | + return $this->iterator->key(); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | public function next() { |
@@ -1,19 +1,19 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Maphper; |
| 3 | 3 | class Maphper implements \Countable, \ArrayAccess, \IteratorAggregate { |
| 4 | - const FIND_EXACT = 0x1; |
|
| 5 | - const FIND_LIKE = 0x2; |
|
| 6 | - const FIND_STARTS = 0x4; |
|
| 7 | - const FIND_ENDS = 0x8; |
|
| 8 | - const FIND_BIT = 0x10; |
|
| 9 | - const FIND_GREATER = 0x20; |
|
| 10 | - const FIND_LESS = 0x40; |
|
| 11 | - const FIND_EXPRESSION = 0x80; |
|
| 12 | - const FIND_AND = 0x100; |
|
| 13 | - const FIND_OR = 0x200; |
|
| 14 | - const FIND_NOT = 0x400; |
|
| 15 | - const FIND_BETWEEN = 0x800; |
|
| 16 | - const FIND_NOCASE = 0x1000; |
|
| 4 | + const FIND_EXACT = 0x1; |
|
| 5 | + const FIND_LIKE = 0x2; |
|
| 6 | + const FIND_STARTS = 0x4; |
|
| 7 | + const FIND_ENDS = 0x8; |
|
| 8 | + const FIND_BIT = 0x10; |
|
| 9 | + const FIND_GREATER = 0x20; |
|
| 10 | + const FIND_LESS = 0x40; |
|
| 11 | + const FIND_EXPRESSION = 0x80; |
|
| 12 | + const FIND_AND = 0x100; |
|
| 13 | + const FIND_OR = 0x200; |
|
| 14 | + const FIND_NOT = 0x400; |
|
| 15 | + const FIND_BETWEEN = 0x800; |
|
| 16 | + const FIND_NOCASE = 0x1000; |
|
| 17 | 17 | |
| 18 | 18 | private $dataSource; |
| 19 | 19 | private $relations = []; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | $results = $this->dataSource->findByField($this->settings['filter'], |
| 60 | - ['order' => $this->settings['sort'], 'limit' => $this->settings['limit'], 'offset' => $this->settings['offset'] ]); |
|
| 60 | + ['order' => $this->settings['sort'], 'limit' => $this->settings['limit'], 'offset' => $this->settings['offset']]); |
|
| 61 | 61 | |
| 62 | 62 | $siblings = new \ArrayObject(); |
| 63 | 63 | |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
| 109 | 109 | return isset($data[0]); |
| 110 | 110 | } |
| 111 | - return (bool) $this->dataSource->findById($offset); |
|
| 111 | + return (bool)$this->dataSource->findById($offset); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | public function offsetUnset($id) { |
@@ -96,15 +96,15 @@ discard block |
||
| 96 | 96 | $value = $this->entity->wrap($this->relations, $value); |
| 97 | 97 | $this->dataSource->save($value); |
| 98 | 98 | $visibilityOverride->write($value); |
| 99 | - $this->entity->create((array_merge((array)$value, (array)$valueCopy)), $this->relations); |
|
| 99 | + $this->entity->create((array_merge((array)$value, (array)$valueCopy)), $this->relations); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | public function offsetExists($offset) { |
| 103 | 103 | if (count($this->dataSource->getPrimaryKey()) > 1) return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey()); |
| 104 | - if (!empty($this->settings['filter'])) { |
|
| 105 | - $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
|
| 106 | - return isset($data[0]); |
|
| 107 | - } |
|
| 104 | + if (!empty($this->settings['filter'])) { |
|
| 105 | + $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
|
| 106 | + return isset($data[0]); |
|
| 107 | + } |
|
| 108 | 108 | return (bool) $this->dataSource->findById($offset); |
| 109 | 109 | } |
| 110 | 110 | |
@@ -114,10 +114,10 @@ discard block |
||
| 114 | 114 | |
| 115 | 115 | public function offsetGet($offset) { |
| 116 | 116 | if (count($this->dataSource->getPrimaryKey()) > 1) return new MultiPk($this, $offset, $this->dataSource->getPrimaryKey()); |
| 117 | - if (!empty($this->settings['filter'])) { |
|
| 118 | - $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
|
| 119 | - return $this->entity->create(isset($data[0]) ? $data[0] : null, $this->relations); |
|
| 120 | - } |
|
| 117 | + if (!empty($this->settings['filter'])) { |
|
| 118 | + $data = $this->dataSource->findByField(array_merge($this->settings['filter'], [$this->dataSource->getPrimaryKey()[0] => $offset])); |
|
| 119 | + return $this->entity->create(isset($data[0]) ? $data[0] : null, $this->relations); |
|
| 120 | + } |
|
| 121 | 121 | return $this->entity->create($this->dataSource->findById($offset), $this->relations); |
| 122 | 122 | } |
| 123 | 123 | |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | public function wrap($relations, $object, $siblings = []) { |
| 22 | 22 | //see if any relations need overwriting |
| 23 | 23 | foreach ($relations as $name => $relation) { |
| 24 | - if (isset($object->$name) && !($object->$name instanceof \Maphper\Relation) ) { |
|
| 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 | 26 | if ($relation->overwrite($object, $object->$name)) $this->parent[] = $object; |
| 27 | 27 | } |
@@ -7,20 +7,20 @@ discard block |
||
| 7 | 7 | |
| 8 | 8 | public function __construct($object) { |
| 9 | 9 | if ($object instanceof \stdclass) { |
| 10 | - $this->readClosure = function() use ($object) { return $object; }; |
|
| 11 | - $this->writeClosure = function ($field, $value) use ($object) { $object->$field = $value; }; |
|
| 10 | + $this->readClosure = function() use ($object) { return $object; }; |
|
| 11 | + $this->writeClosure = function($field, $value) use ($object) { $object->$field = $value; }; |
|
| 12 | 12 | } |
| 13 | 13 | else { |
| 14 | 14 | $this->readClosure = function() { |
| 15 | 15 | $data = new \stdClass; |
| 16 | - foreach ($this as $k => $v) { |
|
| 16 | + foreach ($this as $k => $v) { |
|
| 17 | 17 | if (is_scalar($v) || is_null($v) || (is_object($v) && $v instanceof \DateTime)) $data->$k = $v; |
| 18 | 18 | } |
| 19 | 19 | return $data; |
| 20 | 20 | }; |
| 21 | 21 | $this->readClosure = $this->readClosure->bindTo($object, $object); |
| 22 | 22 | |
| 23 | - $this->writeClosure = function ($field, $value) { $this->$field = $value; }; |
|
| 23 | + $this->writeClosure = function($field, $value) { $this->$field = $value; }; |
|
| 24 | 24 | $this->writeClosure = $this->writeClosure->bindTo($object, $object); |
| 25 | 25 | } |
| 26 | 26 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | public function write($data) { |
| 34 | 34 | if ($data != null) { |
| 35 | 35 | foreach ($data as $key => $value) { |
| 36 | - ($this->writeClosure)($key, $this->processDates($value)); |
|
| 36 | + ($this->writeClosure)($key, $this->processDates($value)); |
|
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | } |