Skip to content

Commit 3c0232d

Browse files
committed
lint
1 parent 3f90141 commit 3c0232d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/HttpKernel/Tests/Controller/ArgumentResolver/RequestPayloadValueResolverTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
use Symfony\Component\HttpKernel\Exception\HttpException;
2626
use Symfony\Component\HttpKernel\Exception\NearMissValueResolverException;
2727
use Symfony\Component\HttpKernel\HttpKernelInterface;
28-
use Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor;
2928
use Symfony\Component\HttpKernel\Tests\Fixtures\Controller\BasicTypesController;
29+
use Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor;
3030
use Symfony\Component\Serializer\Encoder\JsonEncoder;
3131
use Symfony\Component\Serializer\Encoder\XmlEncoder;
3232
use Symfony\Component\Serializer\Exception\NotNormalizableValueException;
@@ -424,7 +424,7 @@ public function testQueryStringParameterTypeMismatch()
424424

425425
try {
426426
$resolver->onKernelControllerArguments($event);
427-
$this->fail(sprintf('Expected "%s" to be thrown.', HttpException::class));
427+
$this->fail(\sprintf('Expected "%s" to be thrown.', HttpException::class));
428428
} catch (HttpException $e) {
429429
$validationFailedException = $e->getPrevious();
430430
$this->assertInstanceOf(ValidationFailedException::class, $validationFailedException);
@@ -518,7 +518,7 @@ public function testRequestInputTypeMismatch()
518518

519519
try {
520520
$resolver->onKernelControllerArguments($event);
521-
$this->fail(sprintf('Expected "%s" to be thrown.', HttpException::class));
521+
$this->fail(\sprintf('Expected "%s" to be thrown.', HttpException::class));
522522
} catch (HttpException $e) {
523523
$validationFailedException = $e->getPrevious();
524524
$this->assertInstanceOf(ValidationFailedException::class, $validationFailedException);

0 commit comments

Comments
 (0)