<?php
namespace Symfony\Component\Yaml\Tag;
final class TaggedValue
{
private string $tag;
private mixed $value;
public function __construct(string $tag, mixed $value)
{
$this->tag = $tag;
$this->value = $value;
}
public function getTag(): string
{
return $this->tag;
}
public function getValue(): mixed
{
return $this->value;
}
}