22 lines
314 B
PHP
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;
|
|
}
|
|
}
|