Mini Kabibi Habibi

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