| 1 | <?php |
||
| 9 | class Where implements Snippet |
||
| 10 | { |
||
| 11 | use EscaperAware; |
||
| 12 | |||
| 13 | private |
||
| 14 | $conditions; |
||
| 15 | |||
| 16 | 40 | public function __construct(Condition $condition = null) |
|
| 25 | |||
| 26 | 24 | public function where(Condition $condition) |
|
| 32 | |||
| 33 | 34 | public function toString() |
|
| 43 | |||
| 44 | 34 | private function buildConditionString() |
|
| 58 | |||
| 59 | 28 | private function addCondition(Condition $condition) |
|
| 63 | } |
||
| 64 |