diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 14:40:06 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 14:40:06 +0000 |
commit | b33909275f604b119c59972779a47a4288e0f5ec (patch) | |
tree | 756bf13bee3a4ed395bc1885391341533d991f65 /src/data_container | |
parent | 99117b7f9eb39a6d77eededce51a4d0aa895cc5b (diff) | |
download | zetacomponents-graph-b33909275f604b119c59972779a47a4288e0f5ec.zip zetacomponents-graph-b33909275f604b119c59972779a47a4288e0f5ec.tar.gz |
- More documentation fixes
Diffstat (limited to 'src/data_container')
-rw-r--r-- | src/data_container/base.php | 14 | ||||
-rw-r--r-- | src/data_container/single.php | 4 |
2 files changed, 13 insertions, 5 deletions
diff --git a/src/data_container/base.php b/src/data_container/base.php index 41b666b..8c4f0c9 100644 --- a/src/data_container/base.php +++ b/src/data_container/base.php @@ -31,6 +31,13 @@ class ezcGraphChartDataContainer implements ArrayAccess, Iterator, Countable */ protected $chart; + /** + * Constructor + * + * @param ezcGraphChart $chart + * @ignore + * @return void + */ public function __construct( ezcGraphChart $chart ) { $this->chart = $chart; @@ -40,6 +47,7 @@ class ezcGraphChartDataContainer implements ArrayAccess, Iterator, Countable * Adds a dataset to the charts data * * @param string $name Name of dataset + * @param ezcGraphDataSet $dataSet * @param mixed $values Values to create dataset with * @throws ezcGraphTooManyDataSetExceptions * If too many datasets are created @@ -96,8 +104,8 @@ class ezcGraphChartDataContainer implements ArrayAccess, Iterator, Countable * This method is part of the ArrayAccess interface to allow access to the * data of this object as if it was an array. * - * @param string $key Identifier of dataset - * @param ezcGraphDataSet$value The dataset to assign. + * @param string $key + * @param ezcGraphDataSet $value * @return void * * @throws ezcBaseValueException @@ -119,7 +127,7 @@ class ezcGraphChartDataContainer implements ArrayAccess, Iterator, Countable * This method is part of the ArrayAccess interface to allow access to the * data of this object as if it was an array. * - * @param int $offset The offset to unset the value for. + * @param string $key * @return void */ public function offsetUnset( $key ) diff --git a/src/data_container/single.php b/src/data_container/single.php index 6c16bb0..45ed951 100644 --- a/src/data_container/single.php +++ b/src/data_container/single.php @@ -20,8 +20,8 @@ class ezcGraphChartSingleDataContainer extends ezcGraphChartDataContainer /** * Adds a dataset to the charts data * - * @param string $name Name of dataset - * @param mixed $values Values to create dataset with + * @param string $name + * @param ezcGraphDataSet $dataSet * @throws ezcGraphTooManyDataSetExceptions * If too many datasets are created * @return ezcGraphDataSet |