Skip to content
This repository has been archived by the owner on Mar 30, 2018. It is now read-only.

Commit

Permalink
Remove methods that not exist anymore from Expr object documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jun 28, 2011
1 parent 36e5006 commit 09d5169
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions en/reference/query-builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,29 +268,6 @@ complete list of supported helper methods available:
<?php
class Expr
{
/** Base objects **/
// Example usage - $qb->expr()->select('u')
public function select($select = null); // Returns Expr\Select instance
// Example - $qb->expr()->from('User', 'u')
public function from($from, $alias); // Returns Expr\From instance
// Example - $qb->expr()->leftJoin('u.Phonenumbers', 'p', Expr\Join::ON, 'p.user_id = u.id AND p.country_code = 55');
// Example - $qb->expr()->leftJoin('u.Phonenumbers', 'p', 'ON', $qb->expr()->andx($qb->expr()->eq('p.user_id', 'u.id'), $qb->expr()->eq('p.country_code', '55'));
public function leftJoin($join, $alias, $conditionType = null, $condition = null); // Returns Expr\Join instance
// Example - $qb->expr()->innerJoin('u.Group', 'g', Expr\Join::WITH, 'g.manager_level = 100');
// Example - $qb->expr()->innerJoin('u.Group', 'g', 'WITH', $qb->expr()->eq('g.manager_level', '100'));
public function innerJoin($join, $alias, $conditionType = null, $condition = null); // Returns Expr\Join instance
// Example - $qb->expr()->orderBy('u.surname', 'ASC')->add('u.firstname', 'ASC')->...
public function orderBy($sort = null, $order = null); // Returns Expr\OrderBy instance
// Example - $qb->expr()->groupBy()->add('u.id')->...
public function groupBy($groupBy = null); // Returns Expr\GroupBy instance
/** Conditional objects **/
// Example - $qb->expr()->andx($cond1 [, $condN])->add(...)->...
Expand Down

0 comments on commit 09d5169

Please sign in to comment.