__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Exception; /** * Thrown when trying to inject a parameter into a constructor/method with an incompatible type. * * @author Nicolas Grekas <[email protected]> * @author Julien Maulny <[email protected]> */ class InvalidParameterTypeException extends InvalidArgumentException { public function __construct(string $serviceId, string $type, \ReflectionParameter $parameter) { $acceptedType = $parameter->getType(); $acceptedType = $acceptedType instanceof \ReflectionNamedType ? $acceptedType->getName() : (string) $acceptedType; $this->code = $type; $function = $parameter->getDeclaringFunction(); $functionName = $function instanceof \ReflectionMethod ? sprintf('%s::%s', $function->getDeclaringClass()->getName(), $function->getName()) : $function->getName(); parent::__construct(sprintf('Invalid definition for service "%s": argument %d of "%s()" accepts "%s", "%s" passed.', $serviceId, 1 + $parameter->getPosition(), $functionName, $acceptedType, $type)); } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AutowiringFailedException.php | File | 2.01 KB | 0644 |
|
| BadMethodCallException.php | File | 468 B | 0644 |
|
| EnvNotFoundException.php | File | 486 B | 0644 |
|
| EnvParameterException.php | File | 777 B | 0644 |
|
| ExceptionInterface.php | File | 610 B | 0644 |
|
| InvalidArgumentException.php | File | 537 B | 0644 |
|
| InvalidParameterTypeException.php | File | 1.31 KB | 0644 |
|
| LogicException.php | File | 444 B | 0644 |
|
| OutOfBoundsException.php | File | 462 B | 0644 |
|
| ParameterCircularReferenceException.php | File | 978 B | 0644 |
|
| ParameterNotFoundException.php | File | 3.76 KB | 0644 |
|
| RuntimeException.php | File | 507 B | 0644 |
|
| ServiceCircularReferenceException.php | File | 1.08 KB | 0644 |
|
| ServiceNotFoundException.php | File | 1.9 KB | 0644 |
|