summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Sciberras <uuf6429@gmail.com>2016-12-10 23:30:37 +0100
committerGitHub <noreply@github.com>2016-12-10 23:30:37 +0100
commit447fd3b52b3da930c75cfd54eb49eec5a3bb1dfb (patch)
treede9f4bde726b1a2ef37847cc037af1aa9fee3b6f
parent9c22823d55d319057023dc3f559ccbe6d88881a1 (diff)
downloadsql-parser-447fd3b52b3da930c75cfd54eb49eec5a3bb1dfb.zip
sql-parser-447fd3b52b3da930c75cfd54eb49eec5a3bb1dfb.tar.gz
sql-parser-447fd3b52b3da930c75cfd54eb49eec5a3bb1dfb.tar.bz2
Minor PHPDoc fix
I've noticed that both when the property is written to or read from, an array of ArrayObj is expected.
-rw-r--r--src/Statements/InsertStatement.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Statements/InsertStatement.php b/src/Statements/InsertStatement.php
index 82b6bc8..9db1a44 100644
--- a/src/Statements/InsertStatement.php
+++ b/src/Statements/InsertStatement.php
@@ -81,7 +81,7 @@ class InsertStatement extends Statement
/**
* Values to be inserted.
*
- * @var Array2d
+ * @var ArrayObj[]|null
*/
public $values;