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

22 lines
295 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\RST;
final class InvalidLink
{
/** @var string */
private $name;
public function __construct(string $name)
{
$this->name = $name;
}
public function getName(): string
{
return $this->name;
}
}