aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-master.tar.gz
ft_server-master.tar.bz2
ft_server-master.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php')
-rw-r--r--srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php112
1 files changed, 0 insertions, 112 deletions
diff --git a/srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php b/srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php
deleted file mode 100644
index 6004cc3..0000000
--- a/srcs/phpmyadmin/vendor/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php
+++ /dev/null
@@ -1,112 +0,0 @@
-<?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\Component\DependencyInjection\Compiler;
-
-use Symfony\Component\DependencyInjection\Definition;
-use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
-use Symfony\Component\DependencyInjection\LazyProxy\ProxyHelper;
-use Symfony\Component\DependencyInjection\Reference;
-
-/**
- * Resolves named arguments to their corresponding numeric index.
- *
- * @author Kévin Dunglas <dunglas@gmail.com>
- */
-class ResolveNamedArgumentsPass extends AbstractRecursivePass
-{
- /**
- * {@inheritdoc}
- */
- protected function processValue($value, $isRoot = false)
- {
- if (!$value instanceof Definition) {
- return parent::processValue($value, $isRoot);
- }
-
- $calls = $value->getMethodCalls();
- $calls[] = ['__construct', $value->getArguments()];
-
- foreach ($calls as $i => $call) {
- list($method, $arguments) = $call;
- $parameters = null;
- $resolvedArguments = [];
-
- foreach ($arguments as $key => $argument) {
- if (\is_int($key)) {
- $resolvedArguments[$key] = $argument;
- continue;
- }
-
- if (null === $parameters) {
- $r = $this->getReflectionMethod($value, $method);
- $class = $r instanceof \ReflectionMethod ? $r->class : $this->currentId;
- $method = $r->getName();
- $parameters = $r->getParameters();
- }
-
- if (isset($key[0]) && '$' !== $key[0] && !class_exists($key) && !interface_exists($key, false)) {
- throw new InvalidArgumentException(sprintf('Invalid service "%s": did you forget to add the "$" prefix to argument "%s"?', $this->currentId, $key));
- }
-
- if (isset($key[0]) && '$' === $key[0]) {
- foreach ($parameters as $j => $p) {
- if ($key === '$'.$p->name) {
- if ($p->isVariadic() && \is_array($argument)) {
- foreach ($argument as $variadicArgument) {
- $resolvedArguments[$j++] = $variadicArgument;
- }
- } else {
- $resolvedArguments[$j] = $argument;
- }
-
- continue 2;
- }
- }
-
- throw new InvalidArgumentException(sprintf('Invalid service "%s": method "%s()" has no argument named "%s". Check your service definition.', $this->currentId, $class !== $this->currentId ? $class.'::'.$method : $method, $key));
- }
-
- if (null !== $argument && !$argument instanceof Reference && !$argument instanceof Definition) {
- throw new InvalidArgumentException(sprintf('Invalid service "%s": the value of argument "%s" of method "%s()" must be null, an instance of %s or an instance of %s, %s given.', $this->currentId, $key, $class !== $this->currentId ? $class.'::'.$method : $method, Reference::class, Definition::class, \gettype($argument)));
- }
-
- $typeFound = false;
- foreach ($parameters as $j => $p) {
- if (!\array_key_exists($j, $resolvedArguments) && ProxyHelper::getTypeHint($r, $p, true) === $key) {
- $resolvedArguments[$j] = $argument;
- $typeFound = true;
- }
- }
-
- if (!$typeFound) {
- throw new InvalidArgumentException(sprintf('Invalid service "%s": method "%s()" has no argument type-hinted as "%s". Check your service definition.', $this->currentId, $class !== $this->currentId ? $class.'::'.$method : $method, $key));
- }
- }
-
- if ($resolvedArguments !== $call[1]) {
- ksort($resolvedArguments);
- $calls[$i][1] = $resolvedArguments;
- }
- }
-
- list(, $arguments) = array_pop($calls);
-
- if ($arguments !== $value->getArguments()) {
- $value->setArguments($arguments);
- }
- if ($calls !== $value->getMethodCalls()) {
- $value->setMethodCalls($calls);
- }
-
- return parent::processValue($value, $isRoot);
- }
-}