Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpguard /
app /
vendor /
twig /
twig /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Attribute
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Cache
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Error
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
ExpressionParser
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Extension
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Loader
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Node
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
NodeVisitor
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Profiler
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Resources
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Runtime
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
RuntimeLoader
[ DIR ]
drwxr-xr-x
2024-09-27 07:26
Sandbox
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Test
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
TokenParser
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Util
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
AbstractTwigCallable.php
5.36
KB
-rw-r--r--
2025-05-08 04:26
Compiler.php
6.17
KB
-rw-r--r--
2025-05-08 04:26
DeprecatedCallableInfo.php
1.64
KB
-rw-r--r--
2025-05-08 04:26
Environment.php
27.04
KB
-rw-r--r--
2025-05-08 04:26
ExpressionParser.php
12.32
KB
-rw-r--r--
2025-05-08 04:26
ExtensionSet.php
16.55
KB
-rw-r--r--
2025-05-08 04:26
FileExtensionEscapingStrategy.php
1.44
KB
-rw-r--r--
2025-05-08 04:26
Lexer.php
22.28
KB
-rw-r--r--
2025-05-08 04:26
Markup.php
1.03
KB
-rw-r--r--
2025-05-08 04:26
NodeTraverser.php
1.78
KB
-rw-r--r--
2024-09-27 07:26
OperatorPrecedenceChange.php
874
B
-rw-r--r--
2025-05-08 04:26
Parser.php
21.44
KB
-rw-r--r--
2025-05-08 04:26
Source.php
929
B
-rw-r--r--
2024-09-27 07:26
Template.php
16.03
KB
-rw-r--r--
2025-05-08 04:26
TemplateWrapper.php
2.56
KB
-rw-r--r--
2025-05-08 04:26
Token.php
7.75
KB
-rw-r--r--
2025-05-08 04:26
TokenStream.php
3.5
KB
-rw-r--r--
2025-05-08 04:26
TwigCallableInterface.php
1.17
KB
-rw-r--r--
2024-09-27 07:26
TwigFilter.php
1.84
KB
-rw-r--r--
2025-05-08 04:26
TwigFunction.php
1.58
KB
-rw-r--r--
2024-09-27 07:26
TwigTest.php
1.53
KB
-rw-r--r--
2024-09-27 07:26
Save
Rename
<?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; /** * @author Fabien Potencier <fabien@symfony.com> */ final class DeprecatedCallableInfo { private string $type; private string $name; public function __construct( private string $package, private string $version, private ?string $altName = null, private ?string $altPackage = null, private ?string $altVersion = null, ) { } public function setType(string $type): void { $this->type = $type; } public function setName(string $name): void { $this->name = $name; } public function triggerDeprecation(?string $file = null, ?int $line = null): void { $message = \sprintf('Twig %s "%s" is deprecated', ucfirst($this->type), $this->name); if ($this->altName) { $message .= \sprintf('; use "%s"', $this->altName); if ($this->altPackage) { $message .= \sprintf(' from the "%s" package', $this->altPackage); } if ($this->altVersion) { $message .= \sprintf(' (available since version %s)', $this->altVersion); } $message .= ' instead'; } if ($file) { $message .= \sprintf(' in %s', $file); if ($line) { $message .= \sprintf(' at line %d', $line); } } $message .= '.'; trigger_deprecation($this->package, $this->version, $message); } }