mirror of
https://github.com/dg/dibi.git
synced 2025-02-24 10:53:17 +01:00
41 lines
593 B
PHP
41 lines
593 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||
|
*
|
||
|
* Copyright (c) 2005 David Grudl (http://davidgrudl.com)
|
||
|
*
|
||
|
* For the full copyright and license information, please view
|
||
|
* the file license.txt that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* SQL literal value.
|
||
|
*
|
||
|
* @author David Grudl
|
||
|
*/
|
||
|
class DibiLiteral extends DibiObject
|
||
|
{
|
||
|
/** @var string */
|
||
|
private $value;
|
||
|
|
||
|
|
||
|
public function __construct($value)
|
||
|
{
|
||
|
$this->value = (string) $value;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function __toString()
|
||
|
{
|
||
|
return $this->value;
|
||
|
}
|
||
|
|
||
|
}
|