summaryrefslogtreecommitdiffstats
path: root/src/Statements/SelectStatement.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Statements/SelectStatement.php')
-rw-r--r--src/Statements/SelectStatement.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Statements/SelectStatement.php b/src/Statements/SelectStatement.php
index a770227..a206b54 100644
--- a/src/Statements/SelectStatement.php
+++ b/src/Statements/SelectStatement.php
@@ -226,14 +226,14 @@ class SelectStatement extends Statement
*
* @var Expression[]
*/
- public $expr = [];
+ public $expr = array();
/**
* Tables used as sources for this statement.
*
* @var Expression[]
*/
- public $from = [];
+ public $from = array();
/**
* Index hints
@@ -310,7 +310,7 @@ class SelectStatement extends Statement
*
* @var SelectStatement[]
*/
- public $union = [];
+ public $union = array();
/**
* The end options of this query.