Files
tougao/vendor/phpoffice/math/src/Math/Element/Operator.php
wangjinlei 881ac3e056 1
2024-07-17 09:23:45 +08:00

22 lines
314 B
PHP

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