1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-10 08:04:32 +02:00

Connection: added literal()

This commit is contained in:
David Grudl
2015-11-02 18:02:41 +01:00
parent 2627e23701
commit 89e92d24a2

View File

@@ -604,6 +604,15 @@ class Connection
}
/**
* @return Literal
*/
public static function literal($value)
{
return new Literal($value);
}
/********************* misc ****************d*g**/