From 3c9bde427e92a91caf5c9400c5036662fe79ee1e Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Sat, 17 Mar 2018 10:51:50 -0300 Subject: [PATCH] Respect invalid argument syntax used by PHP at `ApiPlatformDescriber::__construct()` --- Describer/ApiPlatformDescriber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Describer/ApiPlatformDescriber.php b/Describer/ApiPlatformDescriber.php index 88fc6cf..2a77f4c 100644 --- a/Describer/ApiPlatformDescriber.php +++ b/Describer/ApiPlatformDescriber.php @@ -21,7 +21,7 @@ final class ApiPlatformDescriber extends ExternalDocDescriber public function __construct(Documentation $documentation, $normalizer, UrlGeneratorInterface $urlGenerator) { if (!$normalizer instanceof ApiGatewayNormalizer && !$normalizer instanceof DocumentationNormalizer) { - throw new \LogicException(sprintf('Argument $normalizer of %s must be an instance of %s or %s. %s provided.', __METHOD__, ApiGatewayNormalizer::class, DocumentationNormalizer::class, get_class($normalizer))); + throw new \InvalidArgumentException(sprintf('Argument 2 passed to %s() must be an instance of %s or %s, %s given.', __METHOD__, ApiGatewayNormalizer::class, DocumentationNormalizer::class, get_class($normalizer))); } parent::__construct(function () use ($documentation, $normalizer, $urlGenerator) {