Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Tags/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ abstract class Tags
/**
* The content written between the tags (when a tag pair).
*
* @public string
* @var string
*/
public $content;

Expand All @@ -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;

Expand Down Expand Up @@ -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;

Expand Down
Loading