Skip to content

Commit

Permalink
Fix params
Browse files Browse the repository at this point in the history
  • Loading branch information
morita21 committed Nov 9, 2015
1 parent 7078676 commit d71049a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions classes/mongo/methods.html
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,12 @@ <h4 class="method" id="method_get_where">get_where($collection = "", $where = ar
<td><pre class="php"><code>array()</code></pre></td>
<td>An array of where statements.</td>
</tr>
<tr>
<th><kbd>$limit</kbd></th>
<td><em>number</em></td>
<td><pre class="php"><code>99999</code></pre></td>
<td>The number of items to fetch.</td>
</tr>
</table>
</td>
</tr>
Expand Down Expand Up @@ -361,7 +367,7 @@ <h4 class="method" id="method_select">select($includes = array(), $excludes = ar
<td>Array of fields to include</td>
</tr>
<tr>
<th><kbd>$where</kbd></th>
<th><kbd>$excludes</kbd></th>
<td><em>array</em></td>
<td><pre class="php"><code>array()</code></pre></td>
<td>Array of fields to exclude</td>
Expand Down Expand Up @@ -893,7 +899,7 @@ <h4 class="method" id="method_where_lte">where_lte($field = "", $x)</h4>
</article>

<article>
<h4 class="method" id="method_where_between">where_between($field = "", $x)</h4>
<h4 class="method" id="method_where_between">where_between($field = "", $x, $y)</h4>
<p>
The <strong>where_between</strong> method sets the 'where between' statement.
</p>
Expand Down Expand Up @@ -953,7 +959,7 @@ <h4 class="method" id="method_where_between">where_between($field = "", $x)</h4>
</article>

<article>
<h4 class="method" id="method_where_between_ne">where_between_ne($field = "", $x)</h4>
<h4 class="method" id="method_where_between_ne">where_between_ne($field = "", $x, $y)</h4>
<p>
The <strong>where_between_ne</strong> method sets the 'where between and not equal to' statement.
</p>
Expand Down

0 comments on commit d71049a

Please sign in to comment.