martin-helmich/typo3-typoscript-parser

View on GitHub
src/Parser/AST/Operator/BinaryOperator.php

Summary

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

namespace Helmich\TypoScriptParser\Parser\AST\Operator;

use Helmich\TypoScriptParser\Parser\AST\ObjectPath;
use Helmich\TypoScriptParser\Parser\AST\Statement;

/**
 * Abstract base class for statements with binary operators.
 *
 * @package    Helmich\TypoScriptParser
 * @subpackage Parser\AST\Operator
 */
abstract class BinaryOperator extends Statement
{
    /**
     * The object on the left-hand side of the statement.
     */
    public ObjectPath $object;
}