Files
OA/vendor/phpoffice/math/src/Math/Element/Identifier.php
T
2026-07-23 10:37:26 +08:00

22 lines
316 B
PHP

<?php
namespace PhpOffice\Math\Element;
class Identifier extends AbstractElement
{
/**
* @var string
*/
protected $value;
public function __construct(string $value)
{
$this->value = $value;
}
public function getValue(): string
{
return $this->value;
}
}