@@ -79,9 +79,9 @@ discard block |
||
| 79 | 79 | /** |
| 80 | 80 | * Подготавливаем конечный вариант Сущности |
| 81 | 81 | * |
| 82 | - * @param \Core\Infrastructure\EntityInterface $Entity |
|
| 82 | + * @param EntityInterface $Entity |
|
| 83 | 83 | * @param array $row |
| 84 | - * @return \Core\Infrastructure\EntityInterface |
|
| 84 | + * @return EntityInterface |
|
| 85 | 85 | * @throws BadMethodCallException |
| 86 | 86 | */ |
| 87 | 87 | protected function buildEntity(EntityInterface $Entity, array $row){ |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | |
| 132 | 132 | /** |
| 133 | 133 | * из объекта формирует массив |
| 134 | - * @param \Core\Infrastructure\EntityInterface $Entity |
|
| 134 | + * @param EntityInterface $Entity |
|
| 135 | 135 | * @return \Core\Infrastructure\EntityInterface |
| 136 | 136 | * @throws BadMethodCallException |
| 137 | 137 | */ |
@@ -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 |
@@ -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); |