Major changes: - New ThemeManager with Twig templating and SCSS compilation - Dynamic themes system (themes/default, themes/demo) - LogManager with SQLite storage and syslog forwarding - RequestLogger with static helper methods - Admin UI overhaul (Bootstrap 5, dark mode) - Admin config page with logging and theme settings - Admin logs page with filters and search - Removed legacy Mustache templates - Removed test plugin and theme - Composer dependencies: Twig, scssphp, CommonMark, MaxMind GeoIP
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) Fabien Potencier
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Twig\ExpressionParser;
|
|
|
|
/**
|
|
* @method list<string> getOperatorTokens() Returns the operator token strings that this expression parser handles.
|
|
* These are the strings that should be recognized as operator tokens by the Lexer,
|
|
* and used to look up the parser in the registry.
|
|
* For most parsers, this returns the name and aliases. Parsers that don't handle
|
|
* operator tokens (like LiteralExpressionParser) should return an empty array.
|
|
* This method will be added to the interface in Twig 4.0.
|
|
*/
|
|
interface ExpressionParserInterface
|
|
{
|
|
public function __toString(): string;
|
|
|
|
public function getName(): string;
|
|
|
|
public function getPrecedence(): int;
|
|
|
|
public function getPrecedenceChange(): ?PrecedenceChange;
|
|
|
|
/**
|
|
* @return array<string>
|
|
*/
|
|
public function getAliases(): array;
|
|
}
|