diff options
author | Tobias Schlitt <toby@php.net> | 2007-05-10 20:16:16 +0000 |
---|---|---|
committer | Tobias Schlitt <toby@php.net> | 2007-05-10 20:16:16 +0000 |
commit | c35bb1d06e3e9f2b5517a8486d3353921218f72a (patch) | |
tree | 324d34c6de5c31fdec635ac4095c6c6c356fb378 | |
parent | 0f62a7a31cc60440e682496b538db3e2e20fefe6 (diff) | |
download | zetacomponents-graph-c35bb1d06e3e9f2b5517a8486d3353921218f72a.zip zetacomponents-graph-c35bb1d06e3e9f2b5517a8486d3353921218f72a.tar.gz |
- Doc fixes.
# We abuse phpDoc here and therefore need type names without spaces.
-rw-r--r-- | src/axis/labeled.php | 2 | ||||
-rw-r--r-- | src/data_container/base.php | 2 | ||||
-rw-r--r-- | src/interfaces/chart.php | 2 | ||||
-rw-r--r-- | src/math/matrix.php | 2 | ||||
-rw-r--r-- | src/renderer/axis_label_boxed.php | 2 | ||||
-rw-r--r-- | src/renderer/axis_label_rotated.php | 2 | ||||
-rw-r--r-- | src/structs/step.php | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/axis/labeled.php b/src/axis/labeled.php index 131e302..691679d 100644 --- a/src/axis/labeled.php +++ b/src/axis/labeled.php @@ -43,7 +43,7 @@ class ezcGraphChartElementLabeledAxis extends ezcGraphChartElementAxis /** * Precalculated steps on the axis * - * @var array( ezcGraphAxisStep ) + * @var array(ezcGraphAxisStep) */ protected $steps; diff --git a/src/data_container/base.php b/src/data_container/base.php index 6a78d8a..7e6bba2 100644 --- a/src/data_container/base.php +++ b/src/data_container/base.php @@ -19,7 +19,7 @@ class ezcGraphChartDataContainer implements ArrayAccess, Iterator, Countable /** * Contains the data of a chart * - * @var array( ezcGraphDataSet ) + * @var array(ezcGraphDataSet) */ protected $data = array(); diff --git a/src/interfaces/chart.php b/src/interfaces/chart.php index 3195938..c7cf2b4 100644 --- a/src/interfaces/chart.php +++ b/src/interfaces/chart.php @@ -25,7 +25,7 @@ abstract class ezcGraphChart /** * Contains subelelemnts of the chart like legend and axes * - * @var array( ezcGraphChartElement ) + * @var array(ezcGraphChartElement) */ protected $elements = array(); diff --git a/src/math/matrix.php b/src/math/matrix.php index 30d5ad6..32cbef2 100644 --- a/src/math/matrix.php +++ b/src/math/matrix.php @@ -43,7 +43,7 @@ class ezcGraphMatrix * ) * ) * - * @var array( array( float ) ) + * @var array(array(float)) */ protected $matrix; diff --git a/src/renderer/axis_label_boxed.php b/src/renderer/axis_label_boxed.php index d587f58..ff19e5c 100644 --- a/src/renderer/axis_label_boxed.php +++ b/src/renderer/axis_label_boxed.php @@ -20,7 +20,7 @@ class ezcGraphAxisBoxedLabelRenderer extends ezcGraphAxisLabelRenderer /** * Store step array for later coordinate modifications * - * @var array( ezcGraphStep ) + * @var array(ezcGraphStep) */ protected $steps; diff --git a/src/renderer/axis_label_rotated.php b/src/renderer/axis_label_rotated.php index 2a1d3ce..e9f14a1 100644 --- a/src/renderer/axis_label_rotated.php +++ b/src/renderer/axis_label_rotated.php @@ -23,7 +23,7 @@ class ezcGraphAxisRotatedLabelRenderer extends ezcGraphAxisLabelRenderer /** * Store step array for later coordinate modifications * - * @var array( ezcGraphStep ) + * @var array(ezcGraphStep) */ protected $steps; diff --git a/src/structs/step.php b/src/structs/step.php index 7dcb593..3dafef6 100644 --- a/src/structs/step.php +++ b/src/structs/step.php @@ -38,7 +38,7 @@ class ezcGraphAxisStep /** * Childrens of step * - * @var array( ezcGraphAxisStep ) + * @var array(ezcGraphAxisStep) */ public $childs = array(); |