martin-helmich/typo3-typoscript-parser

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

Summary

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

namespace Helmich\TypoScriptParser\Parser\AST;

/**
 * Abstract base class for include statements.
 *
 * @package    Helmich\TypoScriptParser
 * @subpackage Parser\AST
 */
abstract class IncludeStatement extends Statement
{
}