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

IDibiVariable -> DibiVariableInterface

This commit is contained in:
David Grudl
2007-08-20 22:17:52 +00:00
parent 8b89eb3bd0
commit 2c6608f817
5 changed files with 14 additions and 14 deletions

View File

@@ -10,7 +10,7 @@ if (function_exists('date_default_timezone_set'))
/**
* Pseudotype for UNIX timestamp representation
*/
class TDateTime implements IDibiVariable
class MyDateTime implements DibiVariableInterface
{
/**
* Unix timestamp
@@ -72,6 +72,6 @@ dibi::test("
INSERT INTO [mytable]", array(
'A' => 12,
'B' => NULL,
'C' => new TDateTime(31542), // using out class
'C' => new MyDateTime(31542), // using out class
'D' => 'any string',
));