summaryrefslogtreecommitdiffstats
path: root/src/Utils/Query.php
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2017-02-07 10:55:13 +0100
committerMichal Čihař <michal@cihar.com>2017-02-07 10:55:13 +0100
commitc35cd439fbcb9276d1374ffddd7db67048e392e3 (patch)
treece219335dbe6d59d5e7a8dde9ee9c1e8ec0b77b0 /src/Utils/Query.php
parent6f828eebf0baaab0ee04619df149bae6c075f1f2 (diff)
downloadsql-parser-c35cd439fbcb9276d1374ffddd7db67048e392e3.zip
sql-parser-c35cd439fbcb9276d1374ffddd7db67048e392e3.tar.gz
sql-parser-c35cd439fbcb9276d1374ffddd7db67048e392e3.tar.bz2
Various coding style fixes
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'src/Utils/Query.php')
-rw-r--r--src/Utils/Query.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/Utils/Query.php b/src/Utils/Query.php
index 190166f..6d1aa87 100644
--- a/src/Utils/Query.php
+++ b/src/Utils/Query.php
@@ -496,17 +496,17 @@ class Query
/**
* Gets a specific clause.
*
- * @param Statement $statement the parsed query that has to be modified
- * @param TokensList $list the list of tokens
- * @param string $clause the clause to be returned
- * @param integer|string $type The type of the search.
- * If int,
- * -1 for everything that was before
- * 0 only for the clause
- * 1 for everything after
- * If string, the name of the first clause that
- * should not be included.
- * @param bool $skipFirst whether to skip the first keyword in clause
+ * @param Statement $statement the parsed query that has to be modified
+ * @param TokensList $list the list of tokens
+ * @param string $clause the clause to be returned
+ * @param int|string $type The type of the search.
+ * If int,
+ * -1 for everything that was before
+ * 0 only for the clause
+ * 1 for everything after
+ * If string, the name of the first clause that
+ * should not be included.
+ * @param bool $skipFirst whether to skip the first keyword in clause
*
* @return string
*/