12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- *
- * Cube Framework $Id$ j3yy+IE9tSkfPiDRKtbS4Po9kldOrjca2yobpem5Nts=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2014 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.0
- */
- /**
- * db expression class
- */
- namespace Cube\Db;
- class Expr
- {
- /**
- *
- * @var string
- */
- protected $_expression;
- /**
- *
- * class constructor
- *
- * @param string $expression
- */
- public function __construct($expression)
- {
- $this->_expression = (string) $expression;
- }
- /**
- *
- * magic method
- * return the expression
- *
- * @return string
- */
- public function __toString()
- {
- return $this->_expression;
- }
- }
|