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 League\CommonMark\CommonMarkConverter; use League\CommonMark\Extension\ExtensionInterface; /** * @internal */ final class LeagueCommonMarkConverterFactory { private $extensions; private $config; /** * @param ExtensionInterface[] $extensions */ public function __construct(iterable $extensions, array $config = []) { $this->extensions = $extensions; $this->config = $config; } public function __invoke(): CommonMarkConverter { $converter = new CommonMarkConverter($this->config); foreach ($this->extensions as $extension) { $converter->getEnvironment()->addExtension($extension); } return $converter; } }