diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-12-08 07:33:09 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-12-08 07:33:09 +0000 |
commit | 7169af9b20ca974aa430f9c91e7af63edab57567 (patch) | |
tree | f96c4911625c6fafceb5a57bd9ea667e50e98458 /src/structs | |
parent | 77fb248d7dee40af3a41ca335ef033e88145f64e (diff) | |
download | zetacomponents-graph-7169af9b20ca974aa430f9c91e7af63edab57567.zip zetacomponents-graph-7169af9b20ca974aa430f9c91e7af63edab57567.tar.gz |
- Fixed: Bug #9762 (Structs don't extend ezcBaseStruct)
Diffstat (limited to 'src/structs')
-rw-r--r-- | src/structs/context.php | 22 | ||||
-rw-r--r-- | src/structs/coordinate.php | 22 |
2 files changed, 2 insertions, 42 deletions
diff --git a/src/structs/context.php b/src/structs/context.php index b53f149..77a525e 100644 --- a/src/structs/context.php +++ b/src/structs/context.php @@ -12,7 +12,7 @@ * * @package Graph */ -class ezcGraphContext +class ezcGraphContext extends ezcBaseStruct { /** * Name of dataset @@ -43,26 +43,6 @@ class ezcGraphContext } /** - * Throws a BasePropertyNotFound exception. - * - * @ignore - */ - public function __set( $name, $value ) - { - throw new ezcBasePropertyNotFoundException( $name ); - } - - /** - * Throws a BasePropertyNotFound exception. - * - * @ignore - */ - public function __get( $name ) - { - throw new ezcBasePropertyNotFoundException( $name ); - } - - /** * __set_state * * @param array $properties Struct properties diff --git a/src/structs/coordinate.php b/src/structs/coordinate.php index bbdd077..75daf75 100644 --- a/src/structs/coordinate.php +++ b/src/structs/coordinate.php @@ -12,7 +12,7 @@ * * @package Graph */ -class ezcGraphCoordinate +class ezcGraphCoordinate extends ezcBaseStruct { /** * x coordinate @@ -42,26 +42,6 @@ class ezcGraphCoordinate } /** - * Throws a BasePropertyNotFound exception. - * - * @ignore - */ - public function __set( $name, $value ) - { - throw new ezcBasePropertyNotFoundException( $name ); - } - - /** - * Throws a BasePropertyNotFound exception. - * - * @ignore - */ - public function __get( $name ) - { - throw new ezcBasePropertyNotFoundException( $name ); - } - - /** * __set_state * * @param array $properties Struct properties |