From 7d736bd5a6cc27ff8a5111b1897d9cd3c52adce8 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 18 Feb 2025 10:34:11 +0100 Subject: [PATCH] [CLEANUP] Drop redundant `@internal` annotations If a whole class is `@internal`, there is no need to mark the individual methods, properties or constants as `@internal`. --- src/Parsing/ParserState.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Parsing/ParserState.php b/src/Parsing/ParserState.php index bf348ed60..01658820e 100644 --- a/src/Parsing/ParserState.php +++ b/src/Parsing/ParserState.php @@ -14,8 +14,6 @@ class ParserState { /** * @var null - * - * @internal since 8.5.2 */ public const EOF = null; @@ -125,8 +123,6 @@ public function setPosition($position): void * @return string * * @throws UnexpectedTokenException - * - * @internal since V8.8.0 */ public function parseIdentifier($bIgnoreCase = true) { @@ -158,8 +154,6 @@ public function parseIdentifier($bIgnoreCase = true) * * @throws UnexpectedEOFException * @throws UnexpectedTokenException - * - * @internal since V8.8.0 */ public function parseCharacter($bIsForIdentifier) {