@@ -77,8 +77,7 @@ |
||
| 77 | 77 | { |
| 78 | 78 | if($value!==false){ |
| 79 | 79 | $this->where[$field] = $value; |
| 80 | - } |
|
| 81 | - else{ |
|
| 80 | + } else{ |
|
| 82 | 81 | $this->where = $where; |
| 83 | 82 | } |
| 84 | 83 | |
@@ -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 |
@@ -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); |
@@ -18,6 +18,10 @@ |
||
| 18 | 18 | |
| 19 | 19 | protected $title; |
| 20 | 20 | |
| 21 | + /** |
|
| 22 | + * @param string $code |
|
| 23 | + * @param string $title |
|
| 24 | + */ |
|
| 21 | 25 | function __construct($code,$title){ |
| 22 | 26 | $this->setCode($code); |
| 23 | 27 | $this->setTitle($title); |
@@ -303,9 +303,9 @@ discard block |
||
| 303 | 303 | /** |
| 304 | 304 | * Подготавливаем конечный вариант Сущности |
| 305 | 305 | * |
| 306 | - * @param \Core\Infrastructure\EntityInterface $Entity |
|
| 306 | + * @param EntityInterface $Entity |
|
| 307 | 307 | * @param array $row |
| 308 | - * @return \Core\Infrastructure\EntityInterface |
|
| 308 | + * @return EntityInterface |
|
| 309 | 309 | * @throws BadMethodCallException |
| 310 | 310 | */ |
| 311 | 311 | protected function buildEntity(EntityInterface $Entity, array $row){ |
@@ -355,7 +355,7 @@ discard block |
||
| 355 | 355 | |
| 356 | 356 | /** |
| 357 | 357 | * из объекта формирует массив |
| 358 | - * @param \Core\Infrastructure\EntityInterface $Entity |
|
| 358 | + * @param EntityInterface $Entity |
|
| 359 | 359 | * @return \Core\Infrastructure\EntityInterface |
| 360 | 360 | * @throws BadMethodCallException |
| 361 | 361 | */ |
@@ -400,6 +400,7 @@ discard block |
||
| 400 | 400 | |
| 401 | 401 | /** |
| 402 | 402 | * Установка поля для маппинга |
| 403 | + * @param string $alias |
|
| 403 | 404 | */ |
| 404 | 405 | protected function addMappingField($alias,$field = null){ |
| 405 | 406 | |
@@ -132,7 +132,9 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $data = $this->unbuildEntity($Entity); |
| 134 | 134 | |
| 135 | - if(method_exists($this, 'onPrepareData' )) $this->onPrepareData( $Entity , $data ); |
|
| 135 | + if(method_exists($this, 'onPrepareData' )) { |
|
| 136 | + $this->onPrepareData( $Entity , $data ); |
|
| 137 | + } |
|
| 136 | 138 | |
| 137 | 139 | $id = $data[$this->getPrimaryKey()]; |
| 138 | 140 | unset($data[$this->getPrimaryKey()]); |
@@ -168,13 +170,17 @@ discard block |
||
| 168 | 170 | */ |
| 169 | 171 | public function save(EntityInterface $Entity) |
| 170 | 172 | { |
| 171 | - if(method_exists($this, 'onAfterSave' )) $this->onAfterSave( $Entity ); |
|
| 173 | + if(method_exists($this, 'onAfterSave' )) { |
|
| 174 | + $this->onAfterSave( $Entity ); |
|
| 175 | + } |
|
| 172 | 176 | |
| 173 | 177 | if(!$this->saveWithoutEvents($Entity)){ |
| 174 | 178 | return false; |
| 175 | 179 | } |
| 176 | 180 | |
| 177 | - if(method_exists($this, 'onBeforeSave' )) $this->onBeforeSave( $Entity ); |
|
| 181 | + if(method_exists($this, 'onBeforeSave' )) { |
|
| 182 | + $this->onBeforeSave( $Entity ); |
|
| 183 | + } |
|
| 178 | 184 | |
| 179 | 185 | return true; |
| 180 | 186 | } |
@@ -208,8 +214,7 @@ discard block |
||
| 208 | 214 | if(count($rel['relations'])>0){ |
| 209 | 215 | $this->createListRelationReq($rel['relations'],$rel_list,$obj_parent_link.'get'.$rel['alias'].'()'); |
| 210 | 216 | $rel_list [$obj_parent_link.$obj_link]= $rel['name']; |
| 211 | - } |
|
| 212 | - else{ |
|
| 217 | + } else{ |
|
| 213 | 218 | $rel_list [$obj_parent_link.$obj_link] = $rel['name']; |
| 214 | 219 | } |
| 215 | 220 | } |
@@ -273,19 +278,18 @@ discard block |
||
| 273 | 278 | |
| 274 | 279 | if($this->use_joins===true || empty($row[$field])){ |
| 275 | 280 | $value = $mapper->createEntity($row); |
| 276 | - } |
|
| 277 | - else{ |
|
| 281 | + } else{ |
|
| 278 | 282 | $fkey = isset($cfg['on']) ? $cfg['on'] :$mapper->key; |
| 279 | 283 | $value = $mapper->findBySpecification((new Specification)->setWhere($fkey, $row[$field])); |
| 280 | 284 | } |
| 281 | 285 | |
| 282 | - } |
|
| 283 | - elseif(is_string($field) && isset($row[strtolower($field)])){ |
|
| 286 | + } elseif(is_string($field) && isset($row[strtolower($field)])){ |
|
| 284 | 287 | $value = $row[strtolower($field)]; |
| 285 | 288 | } |
| 286 | 289 | |
| 287 | - if($value!==false) |
|
| 288 | - $Entity->{$method_set}($value); |
|
| 290 | + if($value!==false) { |
|
| 291 | + $Entity->{$method_set}($value); |
|
| 292 | + } |
|
| 289 | 293 | |
| 290 | 294 | } |
| 291 | 295 | |
@@ -316,18 +320,17 @@ discard block |
||
| 316 | 320 | //-------------------------------------------------------------------- |
| 317 | 321 | if( isset($cfg['unbuild']) && is_object($cfg['unbuild']) ){ |
| 318 | 322 | $value = call_user_func($cfg['unbuild'], $Entity->{$method_get}() ); |
| 319 | - } |
|
| 320 | - elseif(isset($cfg['relation']) && is_object($Entity->{$method_get}()) ){ |
|
| 323 | + } elseif(isset($cfg['relation']) && is_object($Entity->{$method_get}()) ){ |
|
| 321 | 324 | |
| 322 | - if(isset($cfg['on'])) |
|
| 323 | - $fkey = $this->DI->get($cfg['relation'])->getFieldAlias($cfg['on']); |
|
| 324 | - else |
|
| 325 | - $fkey = 'id'; |
|
| 325 | + if(isset($cfg['on'])) { |
|
| 326 | + $fkey = $this->DI->get($cfg['relation'])->getFieldAlias($cfg['on']); |
|
| 327 | + } else { |
|
| 328 | + $fkey = 'id'; |
|
| 329 | + } |
|
| 326 | 330 | |
| 327 | 331 | $value = $Entity->{$method_get}()->{'get'.$fkey}(); |
| 328 | 332 | |
| 329 | - } |
|
| 330 | - else{ |
|
| 333 | + } else{ |
|
| 331 | 334 | $value = $Entity->{$method_get}(); |
| 332 | 335 | } |
| 333 | 336 | |
@@ -345,8 +348,7 @@ discard block |
||
| 345 | 348 | |
| 346 | 349 | if(is_string($field)){ |
| 347 | 350 | $field = ['field' => $field]; |
| 348 | - } |
|
| 349 | - elseif( (is_array($field) && !isset($field['field'])) || empty($field)){ |
|
| 351 | + } elseif( (is_array($field) && !isset($field['field'])) || empty($field)){ |
|
| 350 | 352 | $field['field'] = $alias; |
| 351 | 353 | } |
| 352 | 354 | |
@@ -428,8 +430,7 @@ discard block |
||
| 428 | 430 | $delete_key > '' && |
| 429 | 431 | $Entity->getId() > 0){ |
| 430 | 432 | $result = $this->getAdapter()->update($this->getEntityTable(), [ $delete_key => 1 ], "{$this->getPrimaryKey()} = '{$Entity->getId()}'"); |
| 431 | - } |
|
| 432 | - elseif($Entity->getId() > 0){ |
|
| 433 | + } elseif($Entity->getId() > 0){ |
|
| 433 | 434 | |
| 434 | 435 | if($result = $this->getAdapter()->delete($this->getEntityTable(), $this->getPrimaryKey()." = ".$Entity->getId())){ |
| 435 | 436 | if(method_exists($this, 'onBeforeDelete' )){ $result = $this->onBeforeDelete( $Entity );} |
@@ -476,8 +477,9 @@ discard block |
||
| 476 | 477 | $this->use_delete === false && |
| 477 | 478 | $this->setSoftDeleteKey()>'' |
| 478 | 479 | && !isset($specification->getWhere()[$this->setSoftDeleteKey()]) |
| 479 | - ) |
|
| 480 | - $specification->setWhere($this->setSoftDeleteKey(),0); |
|
| 480 | + ) { |
|
| 481 | + $specification->setWhere($this->setSoftDeleteKey(),0); |
|
| 482 | + } |
|
| 481 | 483 | } |
| 482 | 484 | |
| 483 | 485 | /** |
@@ -16,6 +16,9 @@ |
||
| 16 | 16 | |
| 17 | 17 | protected $name; |
| 18 | 18 | |
| 19 | + /** |
|
| 20 | + * @param string $name |
|
| 21 | + */ |
|
| 19 | 22 | function __construct($name) { |
| 20 | 23 | $this->setName($name); |
| 21 | 24 | } |
@@ -22,6 +22,11 @@ |
||
| 22 | 22 | protected $group; |
| 23 | 23 | protected $address; |
| 24 | 24 | |
| 25 | + /** |
|
| 26 | + * @param string $name |
|
| 27 | + * @param string $email |
|
| 28 | + * @param string $password |
|
| 29 | + */ |
|
| 25 | 30 | function __construct($name, $email, $password, UserGroup $Group) { |
| 26 | 31 | $this->setName($name); |
| 27 | 32 | $this->setEmail($email); |
@@ -22,6 +22,10 @@ |
||
| 22 | 22 | |
| 23 | 23 | protected $city; |
| 24 | 24 | |
| 25 | + /** |
|
| 26 | + * @param string $code |
|
| 27 | + * @param string $street |
|
| 28 | + */ |
|
| 25 | 29 | function __construct(City $City,$code,$street) { |
| 26 | 30 | $this->setCity($City); |
| 27 | 31 | $this->setCode($code); |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * Перед сохранением извелкаем объект и дополняем массив для записи, недостающими полями |
| 19 | - * @param \Autoprice\Domain\Price\EntityInterface $Entity |
|
| 19 | + * @param EntityInterface $Entity |
|
| 20 | 20 | * @param type $data |
| 21 | 21 | */ |
| 22 | 22 | protected function onPrepareData(\SimpleORM\EntityInterface $Entity, &$data) { |
@@ -80,8 +80,7 @@ |
||
| 80 | 80 | $o = $$_mc; |
| 81 | 81 | eval($set_path); |
| 82 | 82 | } |
| 83 | - } |
|
| 84 | - elseif(is_object($o) ){ |
|
| 83 | + } elseif(is_object($o) ){ |
|
| 85 | 84 | $$_mc = $o->{$_mc}(); |
| 86 | 85 | $o = $$_mc; |
| 87 | 86 | } |