1 <?php
2 /**
3 * Neevo - Tiny database layer for PHP. (http://neevo.smasty.net)
4 *
5 * This source file is subject to the MIT license that is bundled
6 * with this package in the file license.txt.
7 *
8 * Copyright (c) 2012 Smasty (http://smasty.net)
9 *
10 */
11
12 namespace Neevo;
13
14
15 /**
16 * Representation of SQL literal.
17 * @author Smasty
18 */
19 class Literal {
20
21
22 /** @var string */
23 public $value;
24
25
26 /**
27 * Creates instance of SQL literal.
28 * @param string $value
29 */
30 public function __construct($value){
31 $this->value = $value;
32 }
33
34
35 }
36