@@ -66,6 +66,9 @@ discard block |
||
| 66 | 66 | return $this->adapter->delete($table,$where); |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | + /** |
|
| 70 | + * @param string $str |
|
| 71 | + */ |
|
| 69 | 72 | protected function escape_str($str, $like = FALSE) |
| 70 | 73 | { |
| 71 | 74 | |
@@ -120,7 +123,6 @@ discard block |
||
| 120 | 123 | |
| 121 | 124 | /** |
| 122 | 125 | * |
| 123 | - * @param type $param |
|
| 124 | 126 | */ |
| 125 | 127 | public function getResultQuery($table,\SimpleORM\ISpecificationCriteria $Criteria ) { |
| 126 | 128 | |
@@ -155,7 +157,7 @@ discard block |
||
| 155 | 157 | /** |
| 156 | 158 | * Создает селект не только для основной таблицы но и для приджойненых таблиц |
| 157 | 159 | * @param type $joins |
| 158 | - * @return type |
|
| 160 | + * @return string |
|
| 159 | 161 | */ |
| 160 | 162 | protected function createSelect($joins) |
| 161 | 163 | { |
@@ -171,8 +173,8 @@ discard block |
||
| 171 | 173 | /** |
| 172 | 174 | * Получение записей по условию |
| 173 | 175 | * @param type $where |
| 174 | - * @param type $limit |
|
| 175 | - * @param type $offset |
|
| 176 | + * @param integer $limit |
|
| 177 | + * @param integer $offset |
|
| 176 | 178 | * @param type $joins |
| 177 | 179 | * @param type $order |
| 178 | 180 | * @param type $manualJoins |
@@ -38,9 +38,9 @@ discard block |
||
| 38 | 38 | protected function escape($str) |
| 39 | 39 | { |
| 40 | 40 | if (is_string($str)) { |
| 41 | - $str = "'" . $this->escape_str($str) . "'"; |
|
| 41 | + $str = "'".$this->escape_str($str)."'"; |
|
| 42 | 42 | } elseif (is_bool($str)) { |
| 43 | - $str = ($str === FALSE) ? 0 : 1; |
|
| 43 | + $str = ($str===FALSE) ? 0 : 1; |
|
| 44 | 44 | } elseif (is_null($str)) { |
| 45 | 45 | $str = 'NULL'; |
| 46 | 46 | } |
@@ -48,13 +48,13 @@ discard block |
||
| 48 | 48 | return $str; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function update($table,array $data,$where = []){ |
|
| 52 | - return $this->adapter->update($table,$data,$where); |
|
| 51 | + public function update($table, array $data, $where = []) { |
|
| 52 | + return $this->adapter->update($table, $data, $where); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - public function insert($table,array $data) |
|
| 55 | + public function insert($table, array $data) |
|
| 56 | 56 | { |
| 57 | - return $this->adapter->insert($table,$data); |
|
| 57 | + return $this->adapter->insert($table, $data); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | public function insert_id() |
@@ -62,17 +62,17 @@ discard block |
||
| 62 | 62 | return $this->adapter->insert_id(); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - public function delete($table,$where = []){ |
|
| 66 | - return $this->adapter->delete($table,$where); |
|
| 65 | + public function delete($table, $where = []) { |
|
| 66 | + return $this->adapter->delete($table, $where); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | protected function escape_str($str, $like = FALSE) |
| 70 | 70 | { |
| 71 | 71 | |
| 72 | - if(!$like){ |
|
| 72 | + if (!$like) { |
|
| 73 | 73 | return $this->adapter->escape_str($str); |
| 74 | 74 | } |
| 75 | - else{ |
|
| 75 | + else { |
|
| 76 | 76 | return $this->adapter->escape_like_str($str); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -111,8 +111,8 @@ discard block |
||
| 111 | 111 | throw new HttpException('You cannot have an empty field name.'); |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - if (strpos($field, '.') === false) { |
|
| 115 | - return $this->TableName . '.' . $field; |
|
| 114 | + if (strpos($field, '.')===false) { |
|
| 115 | + return $this->TableName.'.'.$field; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | return $field; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * |
| 123 | 123 | * @param type $param |
| 124 | 124 | */ |
| 125 | - public function getResultQuery($table,\SimpleORM\ISpecificationCriteria $Criteria ) { |
|
| 125 | + public function getResultQuery($table, \SimpleORM\ISpecificationCriteria $Criteria) { |
|
| 126 | 126 | |
| 127 | 127 | $this->setTable($table); |
| 128 | 128 | |
@@ -141,12 +141,12 @@ discard block |
||
| 141 | 141 | return $res; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - protected function setTable($table){ |
|
| 145 | - if(preg_match('~(.*?)\.(.*?)$~is',$table,$m)){ |
|
| 144 | + protected function setTable($table) { |
|
| 145 | + if (preg_match('~(.*?)\.(.*?)$~is', $table, $m)) { |
|
| 146 | 146 | $this->database = $m[1]; |
| 147 | 147 | $this->TableName = $m[2]; |
| 148 | 148 | } |
| 149 | - else{ |
|
| 149 | + else { |
|
| 150 | 150 | $this->TableName = $table; |
| 151 | 151 | } |
| 152 | 152 | } |
@@ -159,9 +159,9 @@ discard block |
||
| 159 | 159 | */ |
| 160 | 160 | protected function createSelect($joins) |
| 161 | 161 | { |
| 162 | - $s = "`" . $this->TableName . '`.*'; |
|
| 162 | + $s = "`".$this->TableName.'`.*'; |
|
| 163 | 163 | foreach ($joins as $table => $join) { |
| 164 | - $table = isset($join['alias']) ? "`{$join['alias']}`": $table; |
|
| 164 | + $table = isset($join['alias']) ? "`{$join['alias']}`" : $table; |
|
| 165 | 165 | $s .= ", $table.*"; |
| 166 | 166 | } |
| 167 | 167 | return $s; |
@@ -184,8 +184,8 @@ discard block |
||
| 184 | 184 | */ |
| 185 | 185 | protected function buildQuery($where = array(), $limit = 25, $offset = 0, $joins = array(), $order = array(), $manualJoins = array(), $group = null, $manualWheres = array(), $whereType = 'AND') |
| 186 | 186 | { |
| 187 | - $table = !empty($this->database)? "`{$this->database}`.".$this->TableName : $this->TableName; |
|
| 188 | - $query = 'SELECT ' . $this->createSelect($joins) . " FROM `".$table."`"; |
|
| 187 | + $table = !empty($this->database) ? "`{$this->database}`.".$this->TableName : $this->TableName; |
|
| 188 | + $query = 'SELECT '.$this->createSelect($joins)." FROM `".$table."`"; |
|
| 189 | 189 | //$countQuery = "SELECT COUNT(*) AS cnt FROM `{$this->database}`.".$this->getTableName(); |
| 190 | 190 | |
| 191 | 191 | $wheres = array(); |
@@ -195,15 +195,15 @@ discard block |
||
| 195 | 195 | |
| 196 | 196 | if (!is_array($value)) { |
| 197 | 197 | $params[] = $value; |
| 198 | - $wheres[] = $key . ' = ?'; |
|
| 198 | + $wheres[] = $key.' = ?'; |
|
| 199 | 199 | } else { |
| 200 | 200 | if (isset($value['operator'])) { |
| 201 | 201 | if (is_array($value['value'])) { |
| 202 | - if ($value['operator'] == 'between') { |
|
| 202 | + if ($value['operator']=='between') { |
|
| 203 | 203 | $params[] = $value['value'][0]; |
| 204 | 204 | $params[] = $value['value'][1]; |
| 205 | - $wheres[] = $key . ' BETWEEN ? AND ?'; |
|
| 206 | - } elseif ($value['operator'] == 'IN') { |
|
| 205 | + $wheres[] = $key.' BETWEEN ? AND ?'; |
|
| 206 | + } elseif ($value['operator']=='IN') { |
|
| 207 | 207 | $in = array(); |
| 208 | 208 | |
| 209 | 209 | foreach ($value['value'] as $item) { |
@@ -211,67 +211,67 @@ discard block |
||
| 211 | 211 | $in[] = '?'; |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | - $wheres[] = $key . ' IN (' . implode(', ', $in) . ') '; |
|
| 214 | + $wheres[] = $key.' IN ('.implode(', ', $in).') '; |
|
| 215 | 215 | } else { |
| 216 | 216 | $ors = array(); |
| 217 | 217 | foreach ($value['value'] as $item) { |
| 218 | - if ($item == 'null') { |
|
| 218 | + if ($item=='null') { |
|
| 219 | 219 | switch ($value['operator']) { |
| 220 | 220 | case '!=': |
| 221 | - $ors[] = $key . ' IS NOT NULL'; |
|
| 221 | + $ors[] = $key.' IS NOT NULL'; |
|
| 222 | 222 | break; |
| 223 | 223 | |
| 224 | 224 | case '==': |
| 225 | 225 | default: |
| 226 | - $ors[] = $key . ' IS NULL'; |
|
| 226 | + $ors[] = $key.' IS NULL'; |
|
| 227 | 227 | break; |
| 228 | 228 | } |
| 229 | 229 | } else { |
| 230 | 230 | $params[] = $item; |
| 231 | - $ors[] = $this->fieldCheck($key) . ' ' . $value['operator'] . ' ?'; |
|
| 231 | + $ors[] = $this->fieldCheck($key).' '.$value['operator'].' ?'; |
|
| 232 | 232 | } |
| 233 | 233 | } |
| 234 | - $wheres[] = '(' . implode(' OR ', $ors) . ')'; |
|
| 234 | + $wheres[] = '('.implode(' OR ', $ors).')'; |
|
| 235 | 235 | } |
| 236 | 236 | } else { |
| 237 | - if ($value['operator'] == 'like') { |
|
| 238 | - $params[] = '%' . $value['value'] . '%'; |
|
| 239 | - $wheres[] = $key . ' ' . $value['operator'] . ' ?'; |
|
| 237 | + if ($value['operator']=='like') { |
|
| 238 | + $params[] = '%'.$value['value'].'%'; |
|
| 239 | + $wheres[] = $key.' '.$value['operator'].' ?'; |
|
| 240 | 240 | } else { |
| 241 | - if ($value['value'] === 'null') { |
|
| 241 | + if ($value['value']==='null') { |
|
| 242 | 242 | switch ($value['operator']) { |
| 243 | 243 | case '!=': |
| 244 | - $wheres[] = $key . ' IS NOT NULL'; |
|
| 244 | + $wheres[] = $key.' IS NOT NULL'; |
|
| 245 | 245 | break; |
| 246 | 246 | |
| 247 | 247 | case '==': |
| 248 | 248 | default: |
| 249 | - $wheres[] = $key . ' IS NULL'; |
|
| 249 | + $wheres[] = $key.' IS NULL'; |
|
| 250 | 250 | break; |
| 251 | 251 | } |
| 252 | 252 | } else { |
| 253 | 253 | $params[] = $value['value']; |
| 254 | - $wheres[] = $key . ' ' . $value['operator'] . ' ?'; |
|
| 254 | + $wheres[] = $key.' '.$value['operator'].' ?'; |
|
| 255 | 255 | } |
| 256 | 256 | } |
| 257 | 257 | } |
| 258 | 258 | } else { |
| 259 | - $wheres[] = $key . ' IN (' . implode(', ', array_map(array($this, 'escape'), $value)) . ')'; |
|
| 259 | + $wheres[] = $key.' IN ('.implode(', ', array_map(array($this, 'escape'), $value)).')'; |
|
| 260 | 260 | } |
| 261 | 261 | } |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | if (count($joins)) { |
| 265 | 265 | foreach ($joins as $table => $join) { |
| 266 | - $type = isset($join['type'])?$join['type']:'INNER'; |
|
| 267 | - $query .= ' '. $type.' JOIN `' . $table . '` as `' . $join['alias'] . '` ON ' . $join['on'] . ' '; |
|
| 266 | + $type = isset($join['type']) ? $join['type'] : 'INNER'; |
|
| 267 | + $query .= ' '.$type.' JOIN `'.$table.'` as `'.$join['alias'].'` ON '.$join['on'].' '; |
|
| 268 | 268 | //$countQuery .= ' '.$type.' JOIN ' . $table . ' ' . $join['alias'] . ' ON ' . $join['on'] . ' '; |
| 269 | 269 | } |
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | if (count($manualJoins)) { |
| 273 | 273 | foreach ($manualJoins as $join) { |
| 274 | - $query .= ' ' . $join . ' '; |
|
| 274 | + $query .= ' '.$join.' '; |
|
| 275 | 275 | //$countQuery .= ' ' . $join . ' '; |
| 276 | 276 | } |
| 277 | 277 | } |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | $hasWhere = false; |
| 280 | 280 | if (count($wheres)) { |
| 281 | 281 | $hasWhere = true; |
| 282 | - $query .= ' WHERE (' . implode(' ' . $whereType . ' ', $wheres) . ')'; |
|
| 282 | + $query .= ' WHERE ('.implode(' '.$whereType.' ', $wheres).')'; |
|
| 283 | 283 | //$countQuery .= ' WHERE (' . implode(' ' . $whereType . ' ', $wheres) . ')'; |
| 284 | 284 | } |
| 285 | 285 | |
@@ -290,11 +290,11 @@ discard block |
||
| 290 | 290 | $query .= ' WHERE '; |
| 291 | 291 | //$countQuery .= ' WHERE '; |
| 292 | 292 | } else { |
| 293 | - $query .= ' ' . $where['type'] . ' '; |
|
| 293 | + $query .= ' '.$where['type'].' '; |
|
| 294 | 294 | //$countQuery .= ' ' . $where['type'] . ' '; |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | - $query .= ' ' . $where['query']; |
|
| 297 | + $query .= ' '.$where['query']; |
|
| 298 | 298 | //$countQuery .= ' ' . $where['query']; |
| 299 | 299 | |
| 300 | 300 | if (isset($where['params'])) { |
@@ -306,28 +306,28 @@ discard block |
||
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | if (!is_null($group)) { |
| 309 | - $query .= ' GROUP BY ' . $group . ' '; |
|
| 309 | + $query .= ' GROUP BY '.$group.' '; |
|
| 310 | 310 | } |
| 311 | 311 | |
| 312 | 312 | if (count($order)) { |
| 313 | 313 | $orders = array(); |
| 314 | - if (is_string($order) && $order == 'rand') { |
|
| 314 | + if (is_string($order) && $order=='rand') { |
|
| 315 | 315 | $query .= ' ORDER BY RAND() '; |
| 316 | 316 | } else { |
| 317 | 317 | foreach ($order as $key => $value) { |
| 318 | - $orders[] = $this->fieldCheck($key) . ' ' . $value; |
|
| 318 | + $orders[] = $this->fieldCheck($key).' '.$value; |
|
| 319 | 319 | } |
| 320 | 320 | |
| 321 | - $query .= ' ORDER BY ' . implode(', ', $orders); |
|
| 321 | + $query .= ' ORDER BY '.implode(', ', $orders); |
|
| 322 | 322 | } |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | if ($limit) { |
| 326 | - $query .= ' LIMIT ' . $limit; |
|
| 326 | + $query .= ' LIMIT '.$limit; |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | if ($offset) { |
| 330 | - $query .= ' OFFSET ' . $offset; |
|
| 330 | + $query .= ' OFFSET '.$offset; |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | try { |
| 346 | 346 | //$query = $this->compile_binds($query, $params); |
| 347 | 347 | |
| 348 | - return $this->adapter->query($query,$params); |
|
| 348 | + return $this->adapter->query($query, $params); |
|
| 349 | 349 | //ed( $this->adapter->query($query) ,1); |
| 350 | 350 | // if ($res = $this->adapter->getRows($query)) { |
| 351 | 351 | // $rtn = array(); |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | // } else { |
| 360 | 360 | // return false; |
| 361 | 361 | // } |
| 362 | - } catch(\PDOException $ex) { |
|
| 362 | + } catch (\PDOException $ex) { |
|
| 363 | 363 | throw $ex; |
| 364 | 364 | } |
| 365 | 365 | } |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | protected function compile_binds($sql, $binds) |
| 376 | 376 | { |
| 377 | - if (strpos($sql, $this->bind_marker) === FALSE) { |
|
| 377 | + if (strpos($sql, $this->bind_marker)===FALSE) { |
|
| 378 | 378 | return $sql; |
| 379 | 379 | } |
| 380 | 380 | |
@@ -71,8 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | if(!$like){ |
| 73 | 73 | return $this->adapter->escape_str($str); |
| 74 | - } |
|
| 75 | - else{ |
|
| 74 | + } else{ |
|
| 76 | 75 | return $this->adapter->escape_like_str($str); |
| 77 | 76 | } |
| 78 | 77 | |
@@ -145,8 +144,7 @@ discard block |
||
| 145 | 144 | if(preg_match('~(.*?)\.(.*?)$~is',$table,$m)){ |
| 146 | 145 | $this->database = $m[1]; |
| 147 | 146 | $this->TableName = $m[2]; |
| 148 | - } |
|
| 149 | - else{ |
|
| 147 | + } else{ |
|
| 150 | 148 | $this->TableName = $table; |
| 151 | 149 | } |
| 152 | 150 | } |
@@ -5,8 +5,8 @@ discard block |
||
| 5 | 5 | |
| 6 | 6 | /** |
| 7 | 7 | * получение защищенного свойства |
| 8 | - * @param type $o |
|
| 9 | - * @param type $name |
|
| 8 | + * @param string $name |
|
| 9 | + * @param SimpleORM\AbstractDataMapper $obj |
|
| 10 | 10 | * @return type |
| 11 | 11 | */ |
| 12 | 12 | static public function getProtectedAttribute($obj, $name) |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | /** |
| 21 | 21 | * Добавление значения в защищенное свойтсво |
| 22 | 22 | * @param type $name |
| 23 | - * @param type $valued |
|
| 23 | + * @param type $value |
|
| 24 | 24 | */ |
| 25 | 25 | private function setValueprotectedProperty($name, $value) |
| 26 | 26 | { |
@@ -30,6 +30,10 @@ discard block |
||
| 30 | 30 | $r->setValue($this->object, $value); //изменяем значение |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | + /** |
|
| 34 | + * @param SimpleORM\AbstractDataMapper $obj |
|
| 35 | + * @param string $name |
|
| 36 | + */ |
|
| 33 | 37 | static public function callMethod($obj, $name, array $args) { |
| 34 | 38 | $class = new \ReflectionClass($obj); |
| 35 | 39 | $method = $class->getMethod($name); |
@@ -3,38 +3,38 @@ |
||
| 3 | 3 | |
| 4 | 4 | class TestHelper{ |
| 5 | 5 | |
| 6 | - /** |
|
| 7 | - * получение защищенного свойства |
|
| 8 | - * @param type $o |
|
| 9 | - * @param type $name |
|
| 10 | - * @return type |
|
| 11 | - */ |
|
| 12 | - static public function getProtectedAttribute($obj, $name) |
|
| 13 | - { |
|
| 14 | - $reflectionClass = new \ReflectionClass($obj); //создаем reflectionClass |
|
| 15 | - $r = $reflectionClass->getProperty($name); //получаем свойство |
|
| 16 | - $r->setAccessible(true); //делаем открытым |
|
| 17 | - return $r->getValue($obj); |
|
| 18 | - } |
|
| 6 | + /** |
|
| 7 | + * получение защищенного свойства |
|
| 8 | + * @param type $o |
|
| 9 | + * @param type $name |
|
| 10 | + * @return type |
|
| 11 | + */ |
|
| 12 | + static public function getProtectedAttribute($obj, $name) |
|
| 13 | + { |
|
| 14 | + $reflectionClass = new \ReflectionClass($obj); //создаем reflectionClass |
|
| 15 | + $r = $reflectionClass->getProperty($name); //получаем свойство |
|
| 16 | + $r->setAccessible(true); //делаем открытым |
|
| 17 | + return $r->getValue($obj); |
|
| 18 | + } |
|
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * Добавление значения в защищенное свойтсво |
|
| 22 | - * @param type $name |
|
| 23 | - * @param type $valued |
|
| 24 | - */ |
|
| 25 | - private function setValueprotectedProperty($name, $value) |
|
| 26 | - { |
|
| 27 | - $reflectionClass = new \ReflectionClass($this->object); //создаем reflectionClass |
|
| 28 | - $r = $reflectionClass->getProperty($name); //получаем свойство |
|
| 29 | - $r->setAccessible(true); //делаем открытым |
|
| 30 | - $r->setValue($this->object, $value); //изменяем значение |
|
| 31 | - } |
|
| 20 | + /** |
|
| 21 | + * Добавление значения в защищенное свойтсво |
|
| 22 | + * @param type $name |
|
| 23 | + * @param type $valued |
|
| 24 | + */ |
|
| 25 | + private function setValueprotectedProperty($name, $value) |
|
| 26 | + { |
|
| 27 | + $reflectionClass = new \ReflectionClass($this->object); //создаем reflectionClass |
|
| 28 | + $r = $reflectionClass->getProperty($name); //получаем свойство |
|
| 29 | + $r->setAccessible(true); //делаем открытым |
|
| 30 | + $r->setValue($this->object, $value); //изменяем значение |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | 33 | static public function callMethod($obj, $name, array $args) { |
| 34 | - $class = new \ReflectionClass($obj); |
|
| 35 | - $method = $class->getMethod($name); |
|
| 36 | - $method->setAccessible(true); |
|
| 37 | - return $method->invokeArgs($obj, $args); |
|
| 38 | - } |
|
| 34 | + $class = new \ReflectionClass($obj); |
|
| 35 | + $method = $class->getMethod($name); |
|
| 36 | + $method->setAccessible(true); |
|
| 37 | + return $method->invokeArgs($obj, $args); |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | 40 | } |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | $loader = require_once __DIR__.'/../vendor/autoload.php'; |
| 3 | 3 | |
| 4 | -class TestHelper{ |
|
| 4 | +class TestHelper { |
|
| 5 | 5 | |
| 6 | 6 | /** |
| 7 | 7 | * получение защищенного свойства |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * таблица для сущности |
| 20 | 20 | * @var type |
| 21 | 21 | */ |
| 22 | - protected $entityTable; |
|
| 22 | + protected $entityTable; |
|
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * первичный ключ |
@@ -88,9 +88,9 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | abstract protected function setMappingFields(); |
| 90 | 90 | |
| 91 | - public function getAdapter() { |
|
| 92 | - return $this->adapter; |
|
| 93 | - } |
|
| 91 | + public function getAdapter() { |
|
| 92 | + return $this->adapter; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | 95 | public function setAdapter(QueryBuilderInterface $adapter){ |
| 96 | 96 | $this->adapter = $adapter; |
@@ -109,12 +109,12 @@ discard block |
||
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | |
| 112 | - public function findById($id) |
|
| 113 | - { |
|
| 112 | + public function findById($id) |
|
| 113 | + { |
|
| 114 | 114 | $Criteria = (new Specification())->setWhere($this->key , $id); |
| 115 | 115 | |
| 116 | - return $this->findBySpecification($Criteria); |
|
| 117 | - } |
|
| 116 | + return $this->findBySpecification($Criteria); |
|
| 117 | + } |
|
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | 120 | * Cохранение сущности |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | protected function buildEntity(EntityInterface $Entity, array $row){ |
| 201 | 201 | |
| 202 | - foreach ($this->mapping_fields as $alias => $cfg ) { |
|
| 202 | + foreach ($this->mapping_fields as $alias => $cfg ) { |
|
| 203 | 203 | |
| 204 | 204 | $value = false; |
| 205 | 205 | |
@@ -236,9 +236,9 @@ discard block |
||
| 236 | 236 | if($value!==false) |
| 237 | 237 | $Entity->{$method_set}($value); |
| 238 | 238 | |
| 239 | - } |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - return $Entity; |
|
| 241 | + return $Entity; |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | |
| 253 | 253 | $row = []; |
| 254 | 254 | |
| 255 | - foreach ($this->mapping_fields as $alias => $cfg ) { |
|
| 255 | + foreach ($this->mapping_fields as $alias => $cfg ) { |
|
| 256 | 256 | |
| 257 | 257 | $field = $cfg['field']; |
| 258 | 258 | |
@@ -282,9 +282,9 @@ discard block |
||
| 282 | 282 | |
| 283 | 283 | $row[$field] = $value; |
| 284 | 284 | |
| 285 | - } |
|
| 285 | + } |
|
| 286 | 286 | |
| 287 | - return $row; |
|
| 287 | + return $row; |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | /** |
@@ -356,10 +356,10 @@ discard block |
||
| 356 | 356 | //получение записей |
| 357 | 357 | $res = $this->getAdapter()->getResultQuery($this->getEntityTable(),$specification); |
| 358 | 358 | |
| 359 | - if (!$row = $res->row_array()) { |
|
| 360 | - return null; |
|
| 361 | - } |
|
| 362 | - return $this->createEntity($row); |
|
| 359 | + if (!$row = $res->row_array()) { |
|
| 360 | + return null; |
|
| 361 | + } |
|
| 362 | + return $this->createEntity($row); |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | /** |
@@ -401,8 +401,8 @@ discard block |
||
| 401 | 401 | $res = $this->getAdapter()->getResultQuery($this->getEntityTable(),$specification); |
| 402 | 402 | |
| 403 | 403 | if (!$rows = $res->result_array()) { |
| 404 | - return null; |
|
| 405 | - } |
|
| 404 | + return null; |
|
| 405 | + } |
|
| 406 | 406 | |
| 407 | 407 | foreach($rows as $k => $row){ |
| 408 | 408 | $rows[$k] = $this->createEntity($row); |
@@ -430,8 +430,8 @@ discard block |
||
| 430 | 430 | } |
| 431 | 431 | |
| 432 | 432 | /** |
| 433 | - * Построение join-ов |
|
| 434 | - */ |
|
| 433 | + * Построение join-ов |
|
| 434 | + */ |
|
| 435 | 435 | protected function setRelations(ISpecificationCriteria $Specification){ |
| 436 | 436 | |
| 437 | 437 | $joins = []; |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | $this->setEntityTable($db_name); |
| 82 | 82 | |
| 83 | - if($this->getEntityTable()=='' || $this->getPrimaryKey()==''){ |
|
| 83 | + if ($this->getEntityTable()=='' || $this->getPrimaryKey()=='') { |
|
| 84 | 84 | throw new InvalidEntityPropertyException('Свойства entityTable или key не заданы'); |
| 85 | 85 | } |
| 86 | 86 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | return $this->adapter; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - public function setAdapter(QueryBuilderInterface $adapter){ |
|
| 95 | + public function setAdapter(QueryBuilderInterface $adapter) { |
|
| 96 | 96 | $this->adapter = $adapter; |
| 97 | 97 | } |
| 98 | 98 | |
@@ -105,13 +105,13 @@ discard block |
||
| 105 | 105 | * Уставнока таблицы |
| 106 | 106 | */ |
| 107 | 107 | protected function setEntityTable($db_name) { |
| 108 | - $this->entityTable = !empty($db_name)? "$db_name.".$this->table : $this->table; |
|
| 108 | + $this->entityTable = !empty($db_name) ? "$db_name.".$this->table : $this->table; |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | |
| 112 | 112 | public function findById($id) |
| 113 | 113 | { |
| 114 | - $Criteria = (new Specification())->setWhere($this->key , $id); |
|
| 114 | + $Criteria = (new Specification())->setWhere($this->key, $id); |
|
| 115 | 115 | |
| 116 | 116 | return $this->findBySpecification($Criteria); |
| 117 | 117 | } |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | unset($data[$this->setSoftDeleteKey()]); |
| 135 | 135 | |
| 136 | - $this->db->insert($this->getEntityTable(),$data); |
|
| 136 | + $this->db->insert($this->getEntityTable(), $data); |
|
| 137 | 137 | |
| 138 | 138 | if (!$id = $this->db->insert_id()) { |
| 139 | 139 | return false; |
@@ -144,13 +144,13 @@ discard block |
||
| 144 | 144 | //update |
| 145 | 145 | else { |
| 146 | 146 | |
| 147 | - if(!$this->getAdapter()->update($this->getEntityTable(), $data, "{$this->getPrimaryKey()} = '{$id}'")){ |
|
| 147 | + if (!$this->getAdapter()->update($this->getEntityTable(), $data, "{$this->getPrimaryKey()} = '{$id}'")) { |
|
| 148 | 148 | return false; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - if(method_exists($this, 'onSaveSuccess' )){ return $this->onSaveSuccess( $Entity );} |
|
| 153 | + if (method_exists($this, 'onSaveSuccess')) { return $this->onSaveSuccess($Entity); } |
|
| 154 | 154 | |
| 155 | 155 | return true; |
| 156 | 156 | } |
@@ -159,12 +159,12 @@ discard block |
||
| 159 | 159 | * На успешное сохранение |
| 160 | 160 | * @param \SimpleORM\EntityInterface $Entity |
| 161 | 161 | */ |
| 162 | - protected function onSaveSuccess(EntityInterface $Entity){ |
|
| 162 | + protected function onSaveSuccess(EntityInterface $Entity) { |
|
| 163 | 163 | |
| 164 | 164 | |
| 165 | 165 | foreach ($this->relations as $alias => $mapper) { |
| 166 | 166 | $Entity = $Entity->{'get'.$alias}(); |
| 167 | - if(!$mapper->save($Entity)){ |
|
| 167 | + if (!$mapper->save($Entity)) { |
|
| 168 | 168 | throw new \Autoprice\Exceptions\EntityNotSaveException('Unable to save Entity!'); |
| 169 | 169 | } |
| 170 | 170 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | protected function onDeleteSuccess(EntityInterface $Entity) { |
| 180 | 180 | foreach ($this->relations as $alias => $mapper) { |
| 181 | 181 | $Entity = $Entity->{'get'.$alias}(); |
| 182 | - if(!$mapper->delete($Entity)){ |
|
| 182 | + if (!$mapper->delete($Entity)) { |
|
| 183 | 183 | throw new \Autoprice\Exceptions\EntityNotDeleteException('Unable to delete Entity!'); |
| 184 | 184 | } |
| 185 | 185 | } |
@@ -197,43 +197,43 @@ discard block |
||
| 197 | 197 | * @return \Core\Infrastructure\EntityInterface |
| 198 | 198 | * @throws BadMethodCallException |
| 199 | 199 | */ |
| 200 | - protected function buildEntity(EntityInterface $Entity, array $row){ |
|
| 200 | + protected function buildEntity(EntityInterface $Entity, array $row) { |
|
| 201 | 201 | |
| 202 | - foreach ($this->mapping_fields as $alias => $cfg ) { |
|
| 202 | + foreach ($this->mapping_fields as $alias => $cfg) { |
|
| 203 | 203 | |
| 204 | 204 | $value = false; |
| 205 | 205 | |
| 206 | 206 | $field = $cfg['field']; |
| 207 | 207 | |
| 208 | - $method_set = 'set' . ucfirst($alias); |
|
| 208 | + $method_set = 'set'.ucfirst($alias); |
|
| 209 | 209 | |
| 210 | - if(!method_exists($Entity, $method_set )){ |
|
| 210 | + if (!method_exists($Entity, $method_set)) { |
|
| 211 | 211 | throw new BadMethodCallException("Метод {$method_set} не определен"); |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | //событие на формирование поля |
| 215 | - if( isset($cfg['build']) && is_object($cfg['build']) ){ |
|
| 215 | + if (isset($cfg['build']) && is_object($cfg['build'])) { |
|
| 216 | 216 | $value = call_user_func($cfg['build'], $row); |
| 217 | 217 | } |
| 218 | 218 | //на связь |
| 219 | - elseif(isset($cfg['relation'])){ |
|
| 219 | + elseif (isset($cfg['relation'])) { |
|
| 220 | 220 | |
| 221 | 221 | $mapper = $this->DI->get($cfg['relation']); |
| 222 | 222 | |
| 223 | - if($this->use_joins===true){ |
|
| 223 | + if ($this->use_joins===true) { |
|
| 224 | 224 | $value = $mapper->createEntity($row); |
| 225 | 225 | } |
| 226 | - else{ |
|
| 227 | - $fkey = isset($cfg['on']) ? $cfg['on'] :$mapper->key; |
|
| 226 | + else { |
|
| 227 | + $fkey = isset($cfg['on']) ? $cfg['on'] : $mapper->key; |
|
| 228 | 228 | $value = $mapper->findBySpecification((new Specification)->setWhere($fkey, $row[$field])); |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | } |
| 232 | - elseif(is_string($field) && isset($row[strtolower($field)])){ |
|
| 232 | + elseif (is_string($field) && isset($row[strtolower($field)])) { |
|
| 233 | 233 | $value = $row[strtolower($field)]; |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | - if($value!==false) |
|
| 236 | + if ($value!==false) |
|
| 237 | 237 | $Entity->{$method_set}($value); |
| 238 | 238 | |
| 239 | 239 | } |
@@ -248,27 +248,27 @@ discard block |
||
| 248 | 248 | * @return \Core\Infrastructure\EntityInterface |
| 249 | 249 | * @throws BadMethodCallException |
| 250 | 250 | */ |
| 251 | - protected function unbuildEntity(EntityInterface $Entity){ |
|
| 251 | + protected function unbuildEntity(EntityInterface $Entity) { |
|
| 252 | 252 | |
| 253 | 253 | $row = []; |
| 254 | 254 | |
| 255 | - foreach ($this->mapping_fields as $alias => $cfg ) { |
|
| 255 | + foreach ($this->mapping_fields as $alias => $cfg) { |
|
| 256 | 256 | |
| 257 | 257 | $field = $cfg['field']; |
| 258 | 258 | |
| 259 | - $method_get = 'get' . ucfirst($alias); |
|
| 259 | + $method_get = 'get'.ucfirst($alias); |
|
| 260 | 260 | |
| 261 | - if(!method_exists($Entity, $method_get )){ |
|
| 261 | + if (!method_exists($Entity, $method_get)) { |
|
| 262 | 262 | throw new BadMethodCallException("Метод {$method_get} не определен"); |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | //-------------------------------------------------------------------- |
| 266 | - if( isset($cfg['unbuild']) && is_object($cfg['unbuild']) ){ |
|
| 267 | - $value = call_user_func($cfg['unbuild'], $Entity->{$method_get}() ); |
|
| 266 | + if (isset($cfg['unbuild']) && is_object($cfg['unbuild'])) { |
|
| 267 | + $value = call_user_func($cfg['unbuild'], $Entity->{$method_get}()); |
|
| 268 | 268 | } |
| 269 | - elseif(isset($cfg['relation'])){ |
|
| 269 | + elseif (isset($cfg['relation'])) { |
|
| 270 | 270 | |
| 271 | - if(isset($cfg['on'])) |
|
| 271 | + if (isset($cfg['on'])) |
|
| 272 | 272 | $fkey = $this->DI->get($cfg['relation'])->getFieldAlias($cfg['on']); |
| 273 | 273 | else |
| 274 | 274 | $fkey = 'id'; |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | $value = $Entity->{$method_get}()->{'get'.$fkey}(); |
| 277 | 277 | |
| 278 | 278 | } |
| 279 | - else{ |
|
| 279 | + else { |
|
| 280 | 280 | $value = $Entity->{$method_get}(); |
| 281 | 281 | } |
| 282 | 282 | |
@@ -290,22 +290,22 @@ discard block |
||
| 290 | 290 | /** |
| 291 | 291 | * Установка поля для маппинга |
| 292 | 292 | */ |
| 293 | - protected function addMappingField($alias,$field = null){ |
|
| 293 | + protected function addMappingField($alias, $field = null) { |
|
| 294 | 294 | |
| 295 | - if(is_string($field)){ |
|
| 295 | + if (is_string($field)) { |
|
| 296 | 296 | $field = ['field' => $field]; |
| 297 | 297 | } |
| 298 | - elseif( (is_array($field) && !isset($field['field'])) || empty($field)){ |
|
| 299 | - $field['field'] = $alias; |
|
| 298 | + elseif ((is_array($field) && !isset($field['field'])) || empty($field)) { |
|
| 299 | + $field['field'] = $alias; |
|
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | $this->mapping_fields[$alias] = $field; |
| 303 | 303 | |
| 304 | - if(isset($field['primary']) && $field['primary']===true){ |
|
| 304 | + if (isset($field['primary']) && $field['primary']===true) { |
|
| 305 | 305 | $this->key = $field['field']; |
| 306 | 306 | } |
| 307 | 307 | |
| 308 | - if(isset($field['softdelete']) && $field['softdelete']===true){ |
|
| 308 | + if (isset($field['softdelete']) && $field['softdelete']===true) { |
|
| 309 | 309 | $this->soft_delete_key = $field['field']; |
| 310 | 310 | } |
| 311 | 311 | |
@@ -332,7 +332,7 @@ discard block |
||
| 332 | 332 | |
| 333 | 333 | |
| 334 | 334 | |
| 335 | - public function getFieldAlias($field){ |
|
| 335 | + public function getFieldAlias($field) { |
|
| 336 | 336 | |
| 337 | 337 | return $this->mapping_fields_aliases[$field]; |
| 338 | 338 | |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | * @param ISpecificationCriteria $specification |
| 345 | 345 | * @return type |
| 346 | 346 | */ |
| 347 | - public function findBySpecification(ISpecificationCriteria $specification){ |
|
| 347 | + public function findBySpecification(ISpecificationCriteria $specification) { |
|
| 348 | 348 | |
| 349 | 349 | //псеводо удаление |
| 350 | 350 | $this->setSoftDelete($specification); |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | $specification->setLimit(1); |
| 355 | 355 | |
| 356 | 356 | //получение записей |
| 357 | - $res = $this->getAdapter()->getResultQuery($this->getEntityTable(),$specification); |
|
| 357 | + $res = $this->getAdapter()->getResultQuery($this->getEntityTable(), $specification); |
|
| 358 | 358 | |
| 359 | 359 | if (!$row = $res->row_array()) { |
| 360 | 360 | return null; |
@@ -375,13 +375,13 @@ discard block |
||
| 375 | 375 | |
| 376 | 376 | if ( |
| 377 | 377 | $delete_key > '' && |
| 378 | - $Entity->getId() > 0){ |
|
| 379 | - $result = $this->db->update($this->getEntityTable(), [ $delete_key => 1 ], "{$this->getPrimaryKey()} = '{$Entity->getId()}'"); |
|
| 378 | + $Entity->getId() > 0) { |
|
| 379 | + $result = $this->db->update($this->getEntityTable(), [$delete_key => 1], "{$this->getPrimaryKey()} = '{$Entity->getId()}'"); |
|
| 380 | 380 | } |
| 381 | - elseif($Entity->getId() > 0){ |
|
| 381 | + elseif ($Entity->getId() > 0) { |
|
| 382 | 382 | |
| 383 | - if($result = $this->db->delete($this->getEntityTable(), $this->getPrimaryKey()." = ".$Entity->getId())){ |
|
| 384 | - if(method_exists($this, 'onDeleteSuccess' )){ $result = $this->onDeleteSuccess( $Entity );} |
|
| 383 | + if ($result = $this->db->delete($this->getEntityTable(), $this->getPrimaryKey()." = ".$Entity->getId())) { |
|
| 384 | + if (method_exists($this, 'onDeleteSuccess')) { $result = $this->onDeleteSuccess($Entity); } |
|
| 385 | 385 | } |
| 386 | 386 | } |
| 387 | 387 | |
@@ -398,13 +398,13 @@ discard block |
||
| 398 | 398 | |
| 399 | 399 | $this->setRelations($specification); |
| 400 | 400 | |
| 401 | - $res = $this->getAdapter()->getResultQuery($this->getEntityTable(),$specification); |
|
| 401 | + $res = $this->getAdapter()->getResultQuery($this->getEntityTable(), $specification); |
|
| 402 | 402 | |
| 403 | 403 | if (!$rows = $res->result_array()) { |
| 404 | 404 | return null; |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | - foreach($rows as $k => $row){ |
|
| 407 | + foreach ($rows as $k => $row) { |
|
| 408 | 408 | $rows[$k] = $this->createEntity($row); |
| 409 | 409 | } |
| 410 | 410 | |
@@ -420,30 +420,30 @@ discard block |
||
| 420 | 420 | * Выборка удаленных моделей |
| 421 | 421 | * @param ISpecificationCriteria $specification |
| 422 | 422 | */ |
| 423 | - private function setSoftDelete(ISpecificationCriteria $specification){ |
|
| 424 | - if( |
|
| 425 | - $this->use_delete === false && |
|
| 426 | - $this->setSoftDeleteKey()>'' |
|
| 423 | + private function setSoftDelete(ISpecificationCriteria $specification) { |
|
| 424 | + if ( |
|
| 425 | + $this->use_delete===false && |
|
| 426 | + $this->setSoftDeleteKey() > '' |
|
| 427 | 427 | && !isset($specification->getWhere()[$this->setSoftDeleteKey()]) |
| 428 | 428 | ) |
| 429 | - $specification->setWhere($this->setSoftDeleteKey(),0); |
|
| 429 | + $specification->setWhere($this->setSoftDeleteKey(), 0); |
|
| 430 | 430 | } |
| 431 | 431 | |
| 432 | 432 | /** |
| 433 | 433 | * Построение join-ов |
| 434 | 434 | */ |
| 435 | - protected function setRelations(ISpecificationCriteria $Specification){ |
|
| 435 | + protected function setRelations(ISpecificationCriteria $Specification) { |
|
| 436 | 436 | |
| 437 | 437 | $joins = []; |
| 438 | 438 | |
| 439 | - foreach ($this->mapping_fields as $field => $cfg){ |
|
| 440 | - if(isset($cfg['relation'])){ |
|
| 439 | + foreach ($this->mapping_fields as $field => $cfg) { |
|
| 440 | + if (isset($cfg['relation'])) { |
|
| 441 | 441 | |
| 442 | 442 | $this->relations[$field] = $mapper = $this->DI->get($cfg['relation']); |
| 443 | 443 | |
| 444 | 444 | $table = $mapper->getEntityTable(); |
| 445 | 445 | |
| 446 | - $relation_key = isset($cfg['on'])? $cfg['on'] : $mapper->key; |
|
| 446 | + $relation_key = isset($cfg['on']) ? $cfg['on'] : $mapper->key; |
|
| 447 | 447 | |
| 448 | 448 | $joins[$table] = [ |
| 449 | 449 | 'alias' => $field, |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | } |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | - if($this->use_joins===true){ |
|
| 457 | + if ($this->use_joins===true) { |
|
| 458 | 458 | $Specification->setJoins($joins); |
| 459 | 459 | } |
| 460 | 460 | } |
@@ -469,7 +469,7 @@ discard block |
||
| 469 | 469 | return $o; |
| 470 | 470 | } |
| 471 | 471 | |
| 472 | - public function withDelete(){ |
|
| 472 | + public function withDelete() { |
|
| 473 | 473 | $o = clone $this; |
| 474 | 474 | $o->use_delete = true; |
| 475 | 475 | return $o; |
@@ -222,19 +222,18 @@ discard block |
||
| 222 | 222 | |
| 223 | 223 | if($this->use_joins===true){ |
| 224 | 224 | $value = $mapper->createEntity($row); |
| 225 | - } |
|
| 226 | - else{ |
|
| 225 | + } else{ |
|
| 227 | 226 | $fkey = isset($cfg['on']) ? $cfg['on'] :$mapper->key; |
| 228 | 227 | $value = $mapper->findBySpecification((new Specification)->setWhere($fkey, $row[$field])); |
| 229 | 228 | } |
| 230 | 229 | |
| 231 | - } |
|
| 232 | - elseif(is_string($field) && isset($row[strtolower($field)])){ |
|
| 230 | + } elseif(is_string($field) && isset($row[strtolower($field)])){ |
|
| 233 | 231 | $value = $row[strtolower($field)]; |
| 234 | 232 | } |
| 235 | 233 | |
| 236 | - if($value!==false) |
|
| 237 | - $Entity->{$method_set}($value); |
|
| 234 | + if($value!==false) { |
|
| 235 | + $Entity->{$method_set}($value); |
|
| 236 | + } |
|
| 238 | 237 | |
| 239 | 238 | } |
| 240 | 239 | |
@@ -265,18 +264,17 @@ discard block |
||
| 265 | 264 | //-------------------------------------------------------------------- |
| 266 | 265 | if( isset($cfg['unbuild']) && is_object($cfg['unbuild']) ){ |
| 267 | 266 | $value = call_user_func($cfg['unbuild'], $Entity->{$method_get}() ); |
| 268 | - } |
|
| 269 | - elseif(isset($cfg['relation'])){ |
|
| 267 | + } elseif(isset($cfg['relation'])){ |
|
| 270 | 268 | |
| 271 | - if(isset($cfg['on'])) |
|
| 272 | - $fkey = $this->DI->get($cfg['relation'])->getFieldAlias($cfg['on']); |
|
| 273 | - else |
|
| 274 | - $fkey = 'id'; |
|
| 269 | + if(isset($cfg['on'])) { |
|
| 270 | + $fkey = $this->DI->get($cfg['relation'])->getFieldAlias($cfg['on']); |
|
| 271 | + } else { |
|
| 272 | + $fkey = 'id'; |
|
| 273 | + } |
|
| 275 | 274 | |
| 276 | 275 | $value = $Entity->{$method_get}()->{'get'.$fkey}(); |
| 277 | 276 | |
| 278 | - } |
|
| 279 | - else{ |
|
| 277 | + } else{ |
|
| 280 | 278 | $value = $Entity->{$method_get}(); |
| 281 | 279 | } |
| 282 | 280 | |
@@ -294,8 +292,7 @@ discard block |
||
| 294 | 292 | |
| 295 | 293 | if(is_string($field)){ |
| 296 | 294 | $field = ['field' => $field]; |
| 297 | - } |
|
| 298 | - elseif( (is_array($field) && !isset($field['field'])) || empty($field)){ |
|
| 295 | + } elseif( (is_array($field) && !isset($field['field'])) || empty($field)){ |
|
| 299 | 296 | $field['field'] = $alias; |
| 300 | 297 | } |
| 301 | 298 | |
@@ -377,8 +374,7 @@ discard block |
||
| 377 | 374 | $delete_key > '' && |
| 378 | 375 | $Entity->getId() > 0){ |
| 379 | 376 | $result = $this->db->update($this->getEntityTable(), [ $delete_key => 1 ], "{$this->getPrimaryKey()} = '{$Entity->getId()}'"); |
| 380 | - } |
|
| 381 | - elseif($Entity->getId() > 0){ |
|
| 377 | + } elseif($Entity->getId() > 0){ |
|
| 382 | 378 | |
| 383 | 379 | if($result = $this->db->delete($this->getEntityTable(), $this->getPrimaryKey()." = ".$Entity->getId())){ |
| 384 | 380 | if(method_exists($this, 'onDeleteSuccess' )){ $result = $this->onDeleteSuccess( $Entity );} |
@@ -425,8 +421,9 @@ discard block |
||
| 425 | 421 | $this->use_delete === false && |
| 426 | 422 | $this->setSoftDeleteKey()>'' |
| 427 | 423 | && !isset($specification->getWhere()[$this->setSoftDeleteKey()]) |
| 428 | - ) |
|
| 429 | - $specification->setWhere($this->setSoftDeleteKey(),0); |
|
| 424 | + ) { |
|
| 425 | + $specification->setWhere($this->setSoftDeleteKey(),0); |
|
| 426 | + } |
|
| 430 | 427 | } |
| 431 | 428 | |
| 432 | 429 | /** |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | //----------------- |
| 59 | 59 | $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
| 60 | 60 | |
| 61 | - $this->assertEquals($mapping_fields, $correct); |
|
| 61 | + $this->assertEquals($mapping_fields, $correct); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | //----------------- |
| 78 | 78 | $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
| 79 | 79 | |
| 80 | - $this->assertEquals($mapping_fields, $correct); |
|
| 80 | + $this->assertEquals($mapping_fields, $correct); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | //----------------- |
| 99 | 99 | $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
| 100 | 100 | |
| 101 | - $this->assertEquals($mapping_fields, $correct); |
|
| 101 | + $this->assertEquals($mapping_fields, $correct); |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | /** |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | //----------------- |
| 122 | 122 | $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
| 123 | 123 | |
| 124 | - $this->assertEquals($mapping_fields, $correct); |
|
| 124 | + $this->assertEquals($mapping_fields, $correct); |
|
| 125 | 125 | |
| 126 | 126 | $key_field = \TestHelper::getProtectedAttribute($this->object,'key'); |
| 127 | 127 | $this->assertEquals($key_field, 'tb_mayfield'); |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | //----------------- |
| 148 | 148 | $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
| 149 | 149 | |
| 150 | - $this->assertEquals($mapping_fields, $correct); |
|
| 150 | + $this->assertEquals($mapping_fields, $correct); |
|
| 151 | 151 | |
| 152 | 152 | $soft_delete_key = \TestHelper::getProtectedAttribute($this->object,'soft_delete_key'); |
| 153 | 153 | $this->assertEquals($soft_delete_key, 'tb_mayfield'); |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | // ])//в конструктор |
| 29 | 29 | ->disableOriginalConstructor() |
| 30 | 30 | //->setMethods(null) |
| 31 | - ->setMethods(['setMappingFields','createEntity']) |
|
| 31 | + ->setMethods(['setMappingFields', 'createEntity']) |
|
| 32 | 32 | //->setMethods(null) //не использовать заглушки методов иначе буде возвращать NULL |
| 33 | 33 | ->getMock(); |
| 34 | 34 | } |
@@ -45,9 +45,9 @@ discard block |
||
| 45 | 45 | /** |
| 46 | 46 | * @covers SimpleORM\AbstractDataMapper::AddMappingField |
| 47 | 47 | */ |
| 48 | - public function testAddMappingField_SimpleField(){ |
|
| 48 | + public function testAddMappingField_SimpleField() { |
|
| 49 | 49 | |
| 50 | - \TestHelper::callMethod($this->object,'addMappingField',['myfield']); |
|
| 50 | + \TestHelper::callMethod($this->object, 'addMappingField', ['myfield']); |
|
| 51 | 51 | |
| 52 | 52 | $correct = [ |
| 53 | 53 | 'myfield' => [ |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | ]; |
| 57 | 57 | |
| 58 | 58 | //----------------- |
| 59 | - $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
|
| 59 | + $mapping_fields = \TestHelper::getProtectedAttribute($this->object, 'mapping_fields'); |
|
| 60 | 60 | |
| 61 | 61 | $this->assertEquals($mapping_fields, $correct); |
| 62 | 62 | } |
@@ -64,9 +64,9 @@ discard block |
||
| 64 | 64 | /** |
| 65 | 65 | * @covers SimpleORM\AbstractDataMapper::AddMappingField |
| 66 | 66 | */ |
| 67 | - public function testAddMappingField_FieldAndAlias(){ |
|
| 67 | + public function testAddMappingField_FieldAndAlias() { |
|
| 68 | 68 | |
| 69 | - \TestHelper::callMethod($this->object,'addMappingField',['myfield','tb_mayfield']); |
|
| 69 | + \TestHelper::callMethod($this->object, 'addMappingField', ['myfield', 'tb_mayfield']); |
|
| 70 | 70 | |
| 71 | 71 | $correct = [ |
| 72 | 72 | 'myfield' => [ |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | ]; |
| 76 | 76 | |
| 77 | 77 | //----------------- |
| 78 | - $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
|
| 78 | + $mapping_fields = \TestHelper::getProtectedAttribute($this->object, 'mapping_fields'); |
|
| 79 | 79 | |
| 80 | 80 | $this->assertEquals($mapping_fields, $correct); |
| 81 | 81 | } |
@@ -83,9 +83,9 @@ discard block |
||
| 83 | 83 | /** |
| 84 | 84 | * @covers SimpleORM\AbstractDataMapper::AddMappingField |
| 85 | 85 | */ |
| 86 | - public function testAddMappingField_ArrayField(){ |
|
| 86 | + public function testAddMappingField_ArrayField() { |
|
| 87 | 87 | |
| 88 | - \TestHelper::callMethod($this->object,'addMappingField',['myfield',[ |
|
| 88 | + \TestHelper::callMethod($this->object, 'addMappingField', ['myfield', [ |
|
| 89 | 89 | 'field' => 'tb_mayfield' |
| 90 | 90 | ]]); |
| 91 | 91 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | ]; |
| 97 | 97 | |
| 98 | 98 | //----------------- |
| 99 | - $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
|
| 99 | + $mapping_fields = \TestHelper::getProtectedAttribute($this->object, 'mapping_fields'); |
|
| 100 | 100 | |
| 101 | 101 | $this->assertEquals($mapping_fields, $correct); |
| 102 | 102 | } |
@@ -104,9 +104,9 @@ discard block |
||
| 104 | 104 | /** |
| 105 | 105 | * @covers SimpleORM\AbstractDataMapper::AddMappingField |
| 106 | 106 | */ |
| 107 | - public function testAddMappingField_PrimaryKey(){ |
|
| 107 | + public function testAddMappingField_PrimaryKey() { |
|
| 108 | 108 | |
| 109 | - \TestHelper::callMethod($this->object,'addMappingField',['myfield',[ |
|
| 109 | + \TestHelper::callMethod($this->object, 'addMappingField', ['myfield', [ |
|
| 110 | 110 | 'field' => 'tb_mayfield', |
| 111 | 111 | 'primary' => true |
| 112 | 112 | ]]); |
@@ -119,20 +119,20 @@ discard block |
||
| 119 | 119 | ]; |
| 120 | 120 | |
| 121 | 121 | //----------------- |
| 122 | - $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
|
| 122 | + $mapping_fields = \TestHelper::getProtectedAttribute($this->object, 'mapping_fields'); |
|
| 123 | 123 | |
| 124 | 124 | $this->assertEquals($mapping_fields, $correct); |
| 125 | 125 | |
| 126 | - $key_field = \TestHelper::getProtectedAttribute($this->object,'key'); |
|
| 126 | + $key_field = \TestHelper::getProtectedAttribute($this->object, 'key'); |
|
| 127 | 127 | $this->assertEquals($key_field, 'tb_mayfield'); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | 131 | * @covers SimpleORM\AbstractDataMapper::AddMappingField |
| 132 | 132 | */ |
| 133 | - public function testAddMappingField_SoftDelete(){ |
|
| 133 | + public function testAddMappingField_SoftDelete() { |
|
| 134 | 134 | |
| 135 | - \TestHelper::callMethod($this->object,'addMappingField',['myfield',[ |
|
| 135 | + \TestHelper::callMethod($this->object, 'addMappingField', ['myfield', [ |
|
| 136 | 136 | 'field' => 'tb_mayfield', |
| 137 | 137 | 'softdelete' => true |
| 138 | 138 | ]]); |
@@ -145,11 +145,11 @@ discard block |
||
| 145 | 145 | ]; |
| 146 | 146 | |
| 147 | 147 | //----------------- |
| 148 | - $mapping_fields = \TestHelper::getProtectedAttribute($this->object,'mapping_fields'); |
|
| 148 | + $mapping_fields = \TestHelper::getProtectedAttribute($this->object, 'mapping_fields'); |
|
| 149 | 149 | |
| 150 | 150 | $this->assertEquals($mapping_fields, $correct); |
| 151 | 151 | |
| 152 | - $soft_delete_key = \TestHelper::getProtectedAttribute($this->object,'soft_delete_key'); |
|
| 152 | + $soft_delete_key = \TestHelper::getProtectedAttribute($this->object, 'soft_delete_key'); |
|
| 153 | 153 | $this->assertEquals($soft_delete_key, 'tb_mayfield'); |
| 154 | 154 | } |
| 155 | 155 | |