diff options
Diffstat (limited to 'src/Utils')
-rw-r--r-- | src/Utils/Error.php | 2 | ||||
-rw-r--r-- | src/Utils/Formatter.php | 2 | ||||
-rw-r--r-- | src/Utils/Query.php | 2 |
3 files changed, 3 insertions, 3 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) { diff --git a/src/Utils/Formatter.php b/src/Utils/Formatter.php index 6d340cc..017d5b1 100644 --- a/src/Utils/Formatter.php +++ b/src/Utils/Formatter.php @@ -170,7 +170,7 @@ class Formatter /** * The styles used for HTML formatting. - * array($type, $flags, $span, $callback). + * [$type, $flags, $span, $callback]. * * @return array */ diff --git a/src/Utils/Query.php b/src/Utils/Query.php index 43da834..e16d172 100644 --- a/src/Utils/Query.php +++ b/src/Utils/Query.php @@ -694,7 +694,7 @@ class Query * @param Statement $statement the parsed query that has to be modified * @param TokensList $list the list of tokens * @param array $ops Clauses to be replaced. Contains multiple - * arrays having two values: array($old, $new). + * arrays having two values: [$old, $new]. * Clauses must be sorted. * * @return string |