1
0
mirror of synced 2025-02-22 15:13:13 +03:00
This commit is contained in:
zYne 2007-05-29 19:20:39 +00:00
parent 39e46088c5
commit 58ec853b36

View File

@ -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