martin-helmich/typo3-typoscript-parser

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

Summary

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

namespace Helmich\TypoScriptParser\Parser\AST\Operator;

/**
 * A delete operator.
 *
 * Example:
 *
 *     foo >
 *
 * @package    Helmich\TypoScriptParser
 * @subpackage Parser\AST\Operator
 */
class Delete extends UnaryOperator
{
}