1
0
mirror of https://github.com/dg/dibi.git synced 2025-09-06 20:30:55 +02:00

* better datetime converting in DibiResult (see http://forum.dibiphp.com/viewtopic.php?pid=2331)

* added support for Nette_Debug
* renamed NObject -> Nette_Object (Nette::Object in PHP 5.3)
This commit is contained in:
David Grudl
2008-04-03 12:40:04 +00:00
parent 2632953541
commit 24bf999cd9
23 changed files with 121 additions and 35 deletions

View File

@@ -23,6 +23,13 @@
/**
* Custom output for Nette::Debug.
*/
interface IDebuggable
interface Nette_IDebuggable
{
/**
* Returns custom panels.
* @return array
*/
function getPanels();
}

View File

@@ -61,7 +61,7 @@
* @package Nette
* @version $Revision$ $Date$
*/
abstract class NObject
abstract class Nette_Object
{
/**

View File

@@ -112,7 +112,7 @@ class DirectoryNotFoundException extends IOException
/**
* User attempt to terminate the current script
* User attempt to terminate the current script.
*/
class AbortException extends RuntimeException
{