1
0
mirror of https://github.com/dg/dibi.git synced 2025-10-23 02:36:04 +02:00

* vetsina method/trid oznacena jako final

This commit is contained in:
David Grudl
2007-08-09 03:31:34 +00:00
parent 609a3d64fb
commit 8b89eb3bd0
12 changed files with 68 additions and 38 deletions

View File

@@ -28,7 +28,7 @@ class DibiException extends Exception
$dbError;
public function __construct($message, $dbError=NULL, $sql=NULL)
public function __construct($message, $dbError = NULL, $sql = NULL)
{
$this->dbError = $dbError;
$this->sql = $sql;
@@ -37,13 +37,13 @@ class DibiException extends Exception
}
public function getSql()
final public function getSql()
{
return $this->sql;
}
public function getDbError()
final public function getDbError()
{
return $this->dbError;
}