Route and Results buttons updated.
[speedfreak] / Server / system / libraries / Database_Expression.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3  * Database expression class to allow for explicit joins and where expressions.
4  *
5  * $Id: Database_Expression.php 4037 2009-03-04 23:35:53Z jheathco $
6  *
7  * @package    Core
8  * @author     Kohana Team
9  * @copyright  (c) 2007-2009 Kohana Team
10  * @license    http://kohanaphp.com/license.html
11  */
12 class Database_Expression_Core {
13
14         protected $expression;
15
16         public function __construct($expression)
17         {
18                 $this->expression = $expression;
19         }
20
21         public function __toString()
22         {
23                 return (string) $this->expression;
24         }
25
26 } // End Database Expr Class