Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Left and right outer joins constant names rearanged
Browse files Browse the repository at this point in the history
Additionally removed unnecessary inner joins constants
  • Loading branch information
Adam committed Feb 19, 2015
1 parent e6ad682 commit ecdf83e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Sql/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ class Select extends AbstractSql implements SqlInterface, PreparableSqlInterface
const JOIN_OUTER = 'outer';
const JOIN_LEFT = 'left';
const JOIN_RIGHT = 'right';
const JOIN_RIGHT_OUTER = 'outer right';
const JOIN_LEFT_OUTER = 'outer left';
const JOIN_RIGHT_INNER = 'inner right';
const JOIN_LEFT_INNER = 'inner left';
const JOIN_OUTER_RIGHT = 'outer right';
const JOIN_OUTER_LEFT = 'outer left';
const SQL_STAR = '*';
const ORDER_ASCENDING = 'ASC';
const ORDER_DESCENDING = 'DESC';
Expand Down

0 comments on commit ecdf83e

Please sign in to comment.