Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
swiftmailer-bundle /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxr-x
2022-02-06 08:03
DataCollector
[ DIR ]
drwxrwxr-x
2022-02-06 08:03
DependencyInjection
[ DIR ]
drwxrwxr-x
2022-02-06 08:03
EventListener
[ DIR ]
drwxrwxr-x
2022-02-06 08:03
Resources
[ DIR ]
drwxrwxr-x
2022-02-06 08:03
Tests
[ DIR ]
drwxrwxr-x
2022-02-06 08:03
.gitignore
24
B
-rw-rw-r--
2022-02-06 08:03
.php_cs.dist
799
B
-rw-rw-r--
2022-02-06 08:03
.travis.yml
754
B
-rw-rw-r--
2022-02-06 08:03
CHANGELOG
4.07
KB
-rw-rw-r--
2022-02-06 08:03
LICENSE
1.03
KB
-rw-rw-r--
2022-02-06 08:03
SwiftmailerBundle.php
1.44
KB
-rw-rw-r--
2022-02-06 08:03
composer.json
1.16
KB
-rw-rw-r--
2022-02-06 08:03
phpunit.xml.dist
681
B
-rw-rw-r--
2022-02-06 08:03
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\SwiftmailerBundle; use Symfony\Bundle\SwiftmailerBundle\DependencyInjection\Compiler\EnsureNoHotPathPass; use Symfony\Bundle\SwiftmailerBundle\DependencyInjection\Compiler\RegisterPluginsPass; use Symfony\Component\Console\Application; use Symfony\Component\DependencyInjection\Compiler\PassConfig; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; /** * @author Fabien Potencier <fabien@symfony.com> */ class SwiftmailerBundle extends Bundle { public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new RegisterPluginsPass()); // Older supported versions of Symfony don't have the parent class that EnsureNoHotPathPass extends from. // But they don't have the hot_path optimization either, so not being able to register our pass is not an issue. if (class_exists('Symfony\Component\DependencyInjection\Compiler\AbstractRecursivePass')) { $container->addCompilerPass(new EnsureNoHotPathPass(), PassConfig::TYPE_AFTER_REMOVING); } } public function registerCommands(Application $application) { // noop } }