diff options
author | MartkCz <antik494@gmail.com> | 2019-05-17 16:57:39 +0200 |
---|---|---|
committer | MartkCz <antik494@gmail.com> | 2019-05-17 16:57:39 +0200 |
commit | 8c3224fc527e52be3314bb74f42db54403ac3349 (patch) | |
tree | 3674aca258293ebb937a0801cdccbfefa7af4e0b /src/Components/LockExpression.php | |
parent | 0a6690b238e7821cb90ab71c78af4dc5610e5c2d (diff) | |
download | sql-parser-8c3224fc527e52be3314bb74f42db54403ac3349.zip sql-parser-8c3224fc527e52be3314bb74f42db54403ac3349.tar.gz sql-parser-8c3224fc527e52be3314bb74f42db54403ac3349.tar.bz2 |
Replaced new self with new static
Diffstat (limited to 'src/Components/LockExpression.php')
-rw-r--r-- | src/Components/LockExpression.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/LockExpression.php b/src/Components/LockExpression.php index 8bf03ce..039d011 100644 --- a/src/Components/LockExpression.php +++ b/src/Components/LockExpression.php @@ -43,7 +43,7 @@ class LockExpression extends Component */ public static function parse(Parser $parser, TokensList $list, array $options = []) { - $ret = new self(); + $ret = new static(); /** * The state of the parser. |