[API] Suppress all psalm issue from resolving container parameters method

This commit is contained in:
Łukasz Chruściel 2020-05-14 13:19:27 +02:00
parent 5c874910ea
commit e42610437e
No known key found for this signature in database
GPG key ID: 428B9D810DB2ACDF

View file

@ -19,6 +19,7 @@ final class ExtractorPropertyMetadataFactory implements PropertyMetadataFactoryI
private $decoratedPropertyMetadataFactory;
/** @var ContainerInterface */
private $container;
/** @var array */
private $collectedParameters = [];
public function __construct(PropertyMetadataFactoryInterface $decoratedPropertyMetadataFactory, ContainerInterface $container)
@ -57,6 +58,7 @@ final class ExtractorPropertyMetadataFactory implements PropertyMetadataFactoryI
*
* @return mixed The source with the placeholders replaced by the container
* parameters. Arrays are resolved recursively.
* @psalm-suppress all
*/
protected function resolve($value)
{