@@ -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 | |
@@ -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) { |
@@ -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) |
@@ -19,8 +19,9 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * Добавление значения в защищенное свойтсво |
| 22 | - * @param type $name |
|
| 23 | - * @param type $valued |
|
| 22 | + * @param string $name |
|
| 23 | + * @param type $value |
|
| 24 | + * @param SimpleORM\AbstractDataMapper $obj |
|
| 24 | 25 | */ |
| 25 | 26 | static public function setValueprotectedProperty($obj, $name, $value) |
| 26 | 27 | { |
@@ -30,6 +31,10 @@ discard block |
||
| 30 | 31 | $r->setValue($obj, $value); //изменяем значение |
| 31 | 32 | } |
| 32 | 33 | |
| 34 | + /** |
|
| 35 | + * @param SimpleORM\AbstractDataMapper $obj |
|
| 36 | + * @param string $name |
|
| 37 | + */ |
|
| 33 | 38 | static public function callMethod($obj, $name, array $args = []) { |
| 34 | 39 | $class = new \ReflectionClass($obj); |
| 35 | 40 | $method = $class->getMethod($name); |
@@ -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 | |
@@ -156,6 +158,7 @@ discard block |
||
| 156 | 158 | /** |
| 157 | 159 | * Создает селект не только для основной таблицы но и для приджойненых таблиц |
| 158 | 160 | * @param type $joins |
| 161 | + * @param string $manualSelect |
|
| 159 | 162 | * @return type |
| 160 | 163 | */ |
| 161 | 164 | protected function createSelect(array $joins,$manualSelect) |
@@ -173,8 +176,8 @@ discard block |
||
| 173 | 176 | /** |
| 174 | 177 | * Получение записей по условию |
| 175 | 178 | * @param type $where |
| 176 | - * @param type $limit |
|
| 177 | - * @param type $offset |
|
| 179 | + * @param integer $limit |
|
| 180 | + * @param integer $offset |
|
| 178 | 181 | * @param type $joins |
| 179 | 182 | * @param type $order |
| 180 | 183 | * @param type $manualJoins |