Server IP : 51.89.169.208 / Your IP : 18.222.164.159 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/public_html/phpMyAdmin/libraries/ |
Upload File : |
<?php declare(strict_types=1); namespace Symfony\Component\DependencyInjection\Loader\Configurator; use Symfony\Component\DependencyInjection\Reference; use function is_string; use function substr; return static function (ContainerConfigurator $configurator): void { $services = $configurator->services(); $loadServices = static function (array $servicesFile, ServicesConfigurator $services): void { foreach ($servicesFile['services'] as $serviceName => $service) { if (is_string($service)) { $services->alias($serviceName, $service); continue; } $theService = $services->set($serviceName, $service['class'] ?? null); if (isset($service['arguments'])) {// !== null check foreach ($service['arguments'] as &$argumentName) { if ($argumentName[0] !== '@') { continue; } $services->alias($serviceName, substr($argumentName, 1)); $argumentName = new Reference(substr($argumentName, 1)); } $theService->args($service['arguments']); } if (! isset($service['factory'])) { continue; } // !== null check $theService->factory($service['factory']); } }; $servicesFile = include ROOT_PATH . 'libraries/services.php'; $loadServices($servicesFile, $services); $servicesFile = include ROOT_PATH . 'libraries/services_controllers.php'; $loadServices($servicesFile, $services); };