@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * Add query result quantity limitation. |
| 67 | 67 | * |
| 68 | 68 | * @param int $offset Resulting offset |
| 69 | - * @param null|int $quantity Amount of RecordInterface object to return |
|
| 69 | + * @param integer $quantity Amount of RecordInterface object to return |
|
| 70 | 70 | * @return self Chaining |
| 71 | 71 | */ |
| 72 | 72 | public function limit(int $quantity, int $offset = 0); |
@@ -95,8 +95,6 @@ discard block |
||
| 95 | 95 | /** |
| 96 | 96 | * Execute current query and receive collection of RecordInterface objects from database. |
| 97 | 97 | * |
| 98 | - * @param null|RecordInterface[] $return If variable is passed resulting collection would be |
|
| 99 | - * stored in this variable. |
|
| 100 | 98 | * @return bool|RecordInterface[] If method is called with $return parameter then then bool |
| 101 | 99 | * with query result status would be returned, otherwise |
| 102 | 100 | * query result collection would be returned. |
@@ -106,8 +104,6 @@ discard block |
||
| 106 | 104 | /** |
| 107 | 105 | * Execute current query and receive RecordInterface object from database. |
| 108 | 106 | * |
| 109 | - * @param null|RecordInterface $return If variable is passed resulting RecordInterface would be |
|
| 110 | - * stored in this variable. |
|
| 111 | 107 | * @return bool|RecordInterface If method is called with $return parameter then then bool |
| 112 | 108 | * with query result status would be returned, otherwise |
| 113 | 109 | * query result RecordInterface would be returned. |
@@ -117,9 +113,7 @@ discard block |
||
| 117 | 113 | /** |
| 118 | 114 | * Execute current query and receive amount of resulting rows. |
| 119 | 115 | * |
| 120 | - * @param null|RecordInterface $return If variable is passed resulting amount of rows would be |
|
| 121 | - * stored in this variable. |
|
| 122 | - * @return bool|RecordInterface If method is called with $return parameter then then bool |
|
| 116 | + * @return integer If method is called with $return parameter then then bool |
|
| 123 | 117 | * with query result status would be returned, otherwise |
| 124 | 118 | * query rows count would be returned. |
| 125 | 119 | */ |