Completed
Push — master ( c9e7f5...1d5376 )
by Vitaly
06:41 queued 02:23
created
src/Query.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * Perform database request and return different results depending on function arguments.
118 118
      * @see \samson\activerecord\Record
119 119
      * @param array $result External variable to store dabatase request results collection
120
-     * @param integer|bool $rType Amount of arguments passed to parent function
120
+     * @param integer $rType Amount of arguments passed to parent function
121 121
      * @param integer $limit Quantity of records to return
122 122
      * @param callable $handler External callable handler for results modification
123 123
      * @param array $handlerArgs External callable handler arguments
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     /**
226 226
      * Add query condition as prepared Condition instance.
227 227
      *
228
-     * @param ConditionInterface $condition Condition to be added
228
+     * @param Condition $condition Condition to be added
229 229
      * @return self Chaining
230 230
      */
231 231
     public function whereCondition(ConditionInterface $condition)
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * Add condition to current query.
249 249
      *
250
-     * @param string|Condition|Argument $fieldName Entity field name
250
+     * @param null|string $fieldName Entity field name
251 251
      * @param string $fieldValue Value
252 252
      * @param string $relation Relation between field name and its value
253 253
      * @return self Chaining
Please login to merge, or discard this patch.