diff options
author | Michal Čihař <michal@cihar.com> | 2017-02-07 12:19:54 +0100 |
---|---|---|
committer | Michal Čihař <michal@cihar.com> | 2017-02-07 12:20:21 +0100 |
commit | b92a44ff195a6b64789c43c2133b09078b0d4a99 (patch) | |
tree | 4fa2e6f10c2f66b0d5b49b85aa287eec0113a1f8 /src/Utils/Query.php | |
parent | 72f95283f576cc397e26759a95d61712bb6c6159 (diff) | |
download | sql-parser-b92a44ff195a6b64789c43c2133b09078b0d4a99.zip sql-parser-b92a44ff195a6b64789c43c2133b09078b0d4a99.tar.gz sql-parser-b92a44ff195a6b64789c43c2133b09078b0d4a99.tar.bz2 |
Fix parameters documentation
This function will only get SelectStatement, so be clear on that.
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'src/Utils/Query.php')
-rw-r--r-- | src/Utils/Query.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Utils/Query.php b/src/Utils/Query.php index 6e64021..6dfb0e3 100644 --- a/src/Utils/Query.php +++ b/src/Utils/Query.php @@ -208,8 +208,8 @@ class Query /** * Gets an array with flags select statement has. * - * @param Statement|null $statement the statement to be processed - * @param array $flagsi flags set so far + * @param SelectStatement $statement the statement to be processed + * @param array $flags flags set so far * * @return array */ |