From 7e27b74a97c946bd4668d09a04901deedd0e81de Mon Sep 17 00:00:00 2001 From: Philipp Daun Date: Thu, 23 Jul 2026 10:07:00 +0200 Subject: [PATCH] Fix types of tags class --- src/Tags/Tags.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Tags/Tags.php b/src/Tags/Tags.php index 0dc2303da29..de71784ea4a 100644 --- a/src/Tags/Tags.php +++ b/src/Tags/Tags.php @@ -23,7 +23,7 @@ abstract class Tags /** * The content written between the tags (when a tag pair). * - * @public string + * @var string */ public $content; @@ -32,14 +32,14 @@ abstract class Tags /** * The variable context around which this tag is positioned. * - * @public array + * @var Context */ public $context; /** * The parameters used on this tag. * - * @public array + * @var Parameters */ public $params; @@ -73,7 +73,7 @@ abstract class Tags /** * The parser instance that executed this tag. * - * @var \Statamic\View\Antlers\Parser + * @var \Statamic\Contracts\View\Antlers\Parser */ public $parser;