[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor
/
vendor_prefixed
/
twig
/
twig
/
twig
/
src
/
TokenParser
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 ApplyTokenParser.php
1,539 B
SET
[ EDIT ]
|
[ DEL ]
📄 FlushTokenParser.php
796 B
SET
[ EDIT ]
|
[ DEL ]
📄 FromTokenParser.php
1,987 B
SET
[ EDIT ]
|
[ DEL ]
📄 IfTokenParser.php
2,777 B
SET
[ EDIT ]
|
[ DEL ]
📄 MacroTokenParser.php
2,111 B
SET
[ EDIT ]
|
[ DEL ]
📄 SandboxTokenParser.php
1,976 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: FlushTokenParser.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 ElementorDeps\Twig\TokenParser; use ElementorDeps\Twig\Node\FlushNode; use ElementorDeps\Twig\Node\Node; use ElementorDeps\Twig\Token; /** * Flushes the output to the client. * * @see flush() * * @internal */ final class FlushTokenParser extends AbstractTokenParser { public function parse(Token $token) : Node { $this->parser->getStream()->expect( /* Token::BLOCK_END_TYPE */ 3 ); return new FlushNode($token->getLine(), $this->getTag()); } public function getTag() : string { return 'flush'; } }