1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-05 05:37:39 +02:00

added IDibiVariable

This commit is contained in:
David Grudl
2011-02-16 18:01:22 +01:00
parent b148291ca2
commit e37af6f99d
2 changed files with 14 additions and 0 deletions

View File

@@ -25,6 +25,17 @@ interface IDataSource extends Countable, IteratorAggregate
/**
* Object that is able to generate SQL.
* @package dibi
*/
interface IDibiVariable
{
function toSql();
}
/**