summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/axis/labeled.php2
-rw-r--r--src/data_container/base.php2
-rw-r--r--src/interfaces/chart.php2
-rw-r--r--src/math/matrix.php2
-rw-r--r--src/renderer/axis_label_boxed.php2
-rw-r--r--src/renderer/axis_label_rotated.php2
-rw-r--r--src/structs/step.php2
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();
OpenPOWER on IntegriCloud