This commit is contained in:
2026-07-23 10:37:26 +08:00
parent 090abf48fa
commit 40add876cd
3503 changed files with 838201 additions and 5 deletions
+21
View File
@@ -0,0 +1,21 @@
<?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;
}
}