for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class DbSqlLiteral {
public $function = '';
public function __construct($function = '') {
$this->function = $function;
}
public function __toString() {
return $this->function;