@@ -119,6 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | /** |
121 | 121 | * @param string $order |
122 | + * @param string $type |
|
122 | 123 | */ |
123 | 124 | public function orderBy($order, $type = null) { |
124 | 125 | if ($type === null) $type = "ASC"; |
@@ -128,6 +129,10 @@ discard block |
||
128 | 129 | return $this; |
129 | 130 | } |
130 | 131 | |
132 | + /** |
|
133 | + * @param integer $debut |
|
134 | + * @param integer $fin |
|
135 | + */ |
|
131 | 136 | public function limit($debut, $fin) { |
132 | 137 | $this->limit = " LIMIT ".$debut.", ".$fin." "; |
133 | 138 |