@@ -127,10 +127,8 @@ discard block |
||
127 | 127 | * Perform database request and return different results depending on function arguments. |
128 | 128 | * @see \samson\activerecord\Record |
129 | 129 | * @param array $result External variable to store dabatase request results collection |
130 | - * @param integer|bool $rType Amount of arguments passed to parent function |
|
130 | + * @param integer $rType Amount of arguments passed to parent function |
|
131 | 131 | * @param integer $limit Quantity of records to return |
132 | - * @param callable $handler External callable handler for results modification |
|
133 | - * @param array $handlerArgs External callable handler arguments |
|
134 | 132 | * @return boolean/array Boolean if $r_type > 0, otherwise array of request results |
135 | 133 | */ |
136 | 134 | protected function &execute( |
@@ -239,7 +237,7 @@ discard block |
||
239 | 237 | /** |
240 | 238 | * Add condition to current query. |
241 | 239 | * |
242 | - * @param string|Condition|Argument $fieldName Entity field name |
|
240 | + * @param null|string $fieldName Entity field name |
|
243 | 241 | * @param string $fieldValue Value |
244 | 242 | * @param string $relation Relation between field name and its value |
245 | 243 | * @return self Chaining |