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