PHPDoc
This commit is contained in:
@ -13,6 +13,9 @@ class FileLogger extends Logger
|
||||
|
||||
protected $file_path = '';
|
||||
|
||||
/**
|
||||
* @var resource
|
||||
*/
|
||||
protected $handler = null;
|
||||
|
||||
protected function __construct()
|
||||
|
@ -12,10 +12,19 @@
|
||||
class Profiler
|
||||
{
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
protected $start = null;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
protected $end = null;
|
||||
|
||||
/**
|
||||
* @var CommandProfiler[]
|
||||
*/
|
||||
protected $queries = array();
|
||||
|
||||
static protected $instance = null;
|
||||
|
Reference in New Issue
Block a user