gl-website-deployer/vendor/doctrine/rst-parser/lib/Nodes/AnchorNode.php
2024-11-19 08:02:04 +01:00

22 lines
321 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\RST\Nodes;
class AnchorNode extends Node
{
/** @var string */
protected $value;
public function __construct(string $value)
{
parent::__construct($value);
}
public function getValue(): string
{
return $this->value;
}
}