diff options
author | William Desportes <williamdes@wdes.fr> | 2019-12-31 21:01:35 +0100 |
---|---|---|
committer | William Desportes <williamdes@wdes.fr> | 2019-12-31 21:01:40 +0100 |
commit | 32e2949754149176a1815ea00c2e9ec2ba29e5bd (patch) | |
tree | e0f648490faa25df68b7458cc121462a381f8fac /src/Utils/Error.php | |
parent | 9ed9cc371543b0ebbca206b484ce8717f7b19d2f (diff) | |
download | sql-parser-32e2949754149176a1815ea00c2e9ec2ba29e5bd.zip sql-parser-32e2949754149176a1815ea00c2e9ec2ba29e5bd.tar.gz sql-parser-32e2949754149176a1815ea00c2e9ec2ba29e5bd.tar.bz2 |
Remove left overs of old array syntax
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'src/Utils/Error.php')
-rw-r--r-- | src/Utils/Error.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils/Error.php b/src/Utils/Error.php index 484da5c..789da0e 100644 --- a/src/Utils/Error.php +++ b/src/Utils/Error.php @@ -26,7 +26,7 @@ class Error * `$err[1]` holds the error code. * `$err[2]` holds the string that caused the issue. * `$err[3]` holds the position of the string. - * (i.e. `array($msg, $code, $str, $pos)`) + * (i.e. `[$msg, $code, $str, $pos]`) */ public static function get($objs) { |