1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-13 01:24:06 +02:00

static public -> public static

This commit is contained in:
David Grudl
2007-06-25 23:47:05 +00:00
parent 5f4dbbbcfd
commit 609a3d64fb
4 changed files with 34 additions and 28 deletions

View File

@@ -252,12 +252,14 @@ abstract class DibiDriver
/**
/**#@+
* Access to undeclared property
* @throws Exception
*/
function __get($name) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
function __set($name, $value) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
function __unset($name) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
/**#@-*/
} // class DibiDriver

View File

@@ -54,7 +54,7 @@ abstract class DibiResult implements IteratorAggregate, Countable
protected $meta;
static private $types = array(
private static $types = array(
dibi::FIELD_TEXT => 'string',
dibi::FIELD_BINARY => 'string',
dibi::FIELD_BOOL => 'bool',
@@ -400,12 +400,14 @@ abstract class DibiResult implements IteratorAggregate, Countable
/**
/**#@+
* Access to undeclared property
* @throws Exception
*/
function __get($name) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
function __set($name, $value) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
function __unset($name) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
/**#@-*/
} // class DibiResult

View File

@@ -377,11 +377,13 @@ class DibiTranslator
/**
/**#@+
* Access to undeclared property
* @throws Exception
*/
function __get($name) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
function __set($name, $value) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
function __unset($name) { throw new Exception("Access to undeclared property: " . get_class($this) . "::$$name"); }
/**#@-*/
} // class DibiParser