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 | |
parent | 77fb248d7dee40af3a41ca335ef033e88145f64e (diff) | |
download | zetacomponents-graph-7169af9b20ca974aa430f9c91e7af63edab57567.zip zetacomponents-graph-7169af9b20ca974aa430f9c91e7af63edab57567.tar.gz |
- Fixed: Bug #9762 (Structs don't extend ezcBaseStruct)
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/structs/context.php | 22 | ||||
-rw-r--r-- | src/structs/coordinate.php | 22 |
3 files changed, 3 insertions, 42 deletions
@@ -6,6 +6,7 @@ absoluteTreshHold to absoluteThreshold - Added feature #9647: Add render to output method +- Fixed issue #9762: Structs don't extend ezcBaseStruct - Fixed issue #9612: Element links for SVG image in the legend require you to click on exactly the text. - Fixed issue #9588: Wrong polynoms build from data 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 |