Current Path : C:/xampp/htdocs/cid/system/vendor/phpoffice/math/src/Math/Element/ |
Current File : C:/xampp/htdocs/cid/system/vendor/phpoffice/math/src/Math/Element/Operator.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; } }