Commit 58ec853b authored by zYne's avatar zYne

--no commit message

--no commit message
parent 39e46088
...@@ -366,6 +366,18 @@ final class Doctrine ...@@ -366,6 +366,18 @@ final class Doctrine
* @var string $path doctrine root directory * @var string $path doctrine root directory
*/ */
private static $path; private static $path;
/**
* @var boolean $_debug
*/
private static $_debug = false;
public static function debug($bool = null)
{
if ($bool !== null) {
self::$_debug = (bool) $bool;
}
return self::$_debug;
}
/** /**
* getPath * getPath
* returns the doctrine root * returns the doctrine root
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment