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 : 18.223.213.54
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 /
doctrine-bridge /
Delete
Unzip
Name
Size
Permission
Date
Action
CacheWarmer
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
DataCollector
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
DataFixtures
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
DependencyInjection
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Form
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
IdGenerator
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Logger
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Messenger
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Middleware
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
PropertyInfo
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
SchemaListener
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Security
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Test
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Types
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
Validator
[ DIR ]
drwxrwxr-x
2022-07-28 14:12
CHANGELOG.md
5.39
KB
-rw-rw-r--
2022-07-28 14:12
ContainerAwareEventManager.php
6.06
KB
-rw-rw-r--
2022-07-28 14:12
LICENSE
1.04
KB
-rw-rw-r--
2022-07-28 14:12
ManagerRegistry.php
2.4
KB
-rw-rw-r--
2022-07-28 14:12
README.md
457
B
-rw-rw-r--
2022-07-28 14:12
composer.json
2.81
KB
-rw-rw-r--
2022-07-28 14:12
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\Bridge\Doctrine; use Doctrine\Persistence\AbstractManagerRegistry; use ProxyManager\Proxy\GhostObjectInterface; use ProxyManager\Proxy\LazyLoadingInterface; use Symfony\Bridge\ProxyManager\LazyProxy\Instantiator\RuntimeInstantiator; use Symfony\Component\DependencyInjection\Container; /** * References Doctrine connections and entity/document managers. * * @author Lukas Kahwe Smith <smith@pooteeweet.org> */ abstract class ManagerRegistry extends AbstractManagerRegistry { /** * @var Container */ protected $container; /** * {@inheritdoc} * * @return object */ protected function getService($name) { return $this->container->get($name); } /** * {@inheritdoc} * * @return void */ protected function resetService($name) { if (!$this->container->initialized($name)) { return; } $manager = $this->container->get($name); if (!$manager instanceof LazyLoadingInterface) { throw new \LogicException('Resetting a non-lazy manager service is not supported. '.(interface_exists(LazyLoadingInterface::class) && class_exists(RuntimeInstantiator::class) ? sprintf('Declare the "%s" service as lazy.', $name) : 'Try running "composer require symfony/proxy-manager-bridge".')); } if ($manager instanceof GhostObjectInterface) { throw new \LogicException('Resetting a lazy-ghost-object manager service is not supported.'); } $manager->setProxyInitializer(\Closure::bind( function (&$wrappedInstance, LazyLoadingInterface $manager) use ($name) { if (isset($this->aliases[$name])) { $name = $this->aliases[$name]; } if (isset($this->fileMap[$name])) { $wrappedInstance = $this->load($this->fileMap[$name], false); } else { $wrappedInstance = $this->{$this->methodMap[$name]}(false); } $manager->setProxyInitializer(null); return true; }, $this->container, Container::class )); } }