martin-helmich/typo3-typoscript-parser

View on GitHub
src/Parser/AST/Scalar.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php declare(strict_types=1);

namespace Helmich\TypoScriptParser\Parser\AST;

/**
 * A scalar value.
 *
 * @package    Helmich\TypoScriptParser
 * @subpackage Parser\AST
 */
class Scalar
{
    public string $value;

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