1
This commit is contained in:
21
vendor/phpoffice/math/src/Math/Element/Operator.php
vendored
Normal file
21
vendor/phpoffice/math/src/Math/Element/Operator.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user