/var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Connector
NameSizeModeActions
Laravel5/-0775rm
Lumen/-0775rm
Phalcon/-0775rm
Shared/-0775rm
Yii2/-0775rm
ZendExpressive/-0775rm
ZF2/-0775rm
Guzzle.php95620664editdlrm
Guzzle6.php117580664editdlrm
Laravel5.php105650664editdlrm
Lumen.php48210664editdlrm
Phalcon.php49850664editdlrm
Symfony.php27550664editdlrm
Universal.php19680664editdlrm
Yii1.php42230664editdlrm
Yii2.php179150664editdlrm
ZendExpressive.php69370664editdlrm
ZF1.php44950664editdlrm
ZF2.php64530664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Connector/Symfony.php (2755B)
followRedirects(true); $this->rebootable = (boolean)$rebootable; $this->persistentServices = $services; $this->container = $this->kernel->getContainer(); $this->rebootKernel(); } /** * @param \Symfony\Component\HttpFoundation\Request $request */ protected function doRequest($request) { if ($this->rebootable) { if ($this->hasPerformedRequest) { $this->rebootKernel(); } else { $this->hasPerformedRequest = true; } } return parent::doRequest($request); } /** * Reboot kernel * * Services from the list of persistent services * are updated from service container before kernel shutdown * and injected into newly initialized container after kernel boot. */ public function rebootKernel() { if ($this->container) { foreach ($this->persistentServices as $serviceName => $service) { if ($this->container->has($serviceName)) { $this->persistentServices[$serviceName] = $this->container->get($serviceName); } } } $this->kernel->shutdown(); $this->kernel->boot(); $this->container = $this->kernel->getContainer(); foreach ($this->persistentServices as $serviceName => $service) { try { $this->container->set($serviceName, $service); } catch (\InvalidArgumentException $e) { //Private services can't be set in Symfony 4 codecept_debug("[Symfony] Can't set persistent service $serviceName: " . $e->getMessage()); } } if ($this->container->has('profiler')) { $this->container->get('profiler')->enable(); } } }