Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/vendor/phpoffice/math/src/Math/Element/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/vendor/phpoffice/math/src/Math/Element/Identifier.php

<?php

namespace PhpOffice\Math\Element;

class Identifier extends AbstractElement
{
    /**
     * @var string
     */
    protected $value;

    public function __construct(string $value)
    {
        $this->value = $value;
    }

    public function getValue(): string
    {
        return $this->value;
    }
}