From f6237916a79c4b16c411d84a1193a370805c12ae Mon Sep 17 00:00:00 2001 From: Karoly Gossler Date: Tue, 6 Feb 2024 17:37:47 +0100 Subject: [PATCH] make class final Co-authored-by: Alexander M. Turek --- src/Query/TokenType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Query/TokenType.php b/src/Query/TokenType.php index 238653018bc..417c7506d25 100644 --- a/src/Query/TokenType.php +++ b/src/Query/TokenType.php @@ -4,7 +4,7 @@ namespace Doctrine\ORM\Query; -class TokenType +final class TokenType { // All tokens that are not valid identifiers must be < 100 public const T_NONE = 1;