diff options
Diffstat (limited to 'src/structs/chart_config.php')
-rw-r--r-- | src/structs/chart_config.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/structs/chart_config.php b/src/structs/chart_config.php new file mode 100644 index 0000000..5ac6235 --- /dev/null +++ b/src/structs/chart_config.php @@ -0,0 +1,35 @@ +<?php + +class ezcGraphChartOption +{ + public $width = false; + + public $height = false; + + /** + * Empty constructor + */ + public function __construct() + { + } + + /** + * Throws a BasePropertyNotFound exception. + */ + public function __set( $name, $value ) + { + throw new ezcBasePropertyNotFoundException( $name ); + } + + /** + * Throws a BasePropertyNotFound exception. + */ + public function __get( $name ) + { + throw new ezcBasePropertyNotFoundException( $name ); + } +} + +? + +?> |