diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2016-02-21 15:47:32 +0200 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2016-02-21 15:47:32 +0200 |
commit | bc47af8d0702a004a743a6abb473c27cd3b6010d (patch) | |
tree | 72a04a8a2fc09f4f868bc3f61e2e538023b143ac /src/Utils/Query.php | |
parent | 33f62b8de25ad847b6e3948a87d17163fd090492 (diff) | |
download | sql-parser-bc47af8d0702a004a743a6abb473c27cd3b6010d.zip sql-parser-bc47af8d0702a004a743a6abb473c27cd3b6010d.tar.gz sql-parser-bc47af8d0702a004a743a6abb473c27cd3b6010d.tar.bz2 |
Misc: Fixed some issues reported by Scrutinizer.
Signed-off-by: Dan Ungureanu <udan1107@gmail.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 3698f1c..239cd6f 100644 --- a/src/Utils/Query.php +++ b/src/Utils/Query.php @@ -57,8 +57,8 @@ class Query /** * Gets an array with flags this statement has. * - * @param Statement $statement The statement to be processed. - * @param bool $all If `false`, false values will not be included. + * @param Statement|null $statement The statement to be processed. + * @param bool $all If `false`, false values will not be included. * * @return array */ |