mirror of
https://github.com/dg/dibi.git
synced 2025-02-24 10:53:17 +01:00
37 lines
695 B
PHP
37 lines
695 B
PHP
<?php
|
|
|
|
/**
|
|
* Nette Framework
|
|
*
|
|
* Copyright (c) 2004, 2008 David Grudl (http://davidgrudl.com)
|
|
*
|
|
* This source file is subject to the "Nette license" that is bundled
|
|
* with this package in the file license.txt.
|
|
*
|
|
* For more information please see http://nettephp.com/
|
|
*
|
|
* @copyright Copyright (c) 2004, 2008 David Grudl
|
|
* @license http://nettephp.com/license Nette license
|
|
* @link http://nettephp.com/
|
|
* @category Nette
|
|
* @package Nette
|
|
*/
|
|
|
|
/*namespace Nette;*/
|
|
|
|
|
|
|
|
/**
|
|
* Custom output for Nette::Debug.
|
|
*/
|
|
interface IDebuggable
|
|
{
|
|
|
|
/**
|
|
* Returns custom panels.
|
|
* @return array
|
|
*/
|
|
function getPanels();
|
|
|
|
}
|