From 6b4e1ed2d3e1c2d5877bbdadb54cf52c741e4b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 28 Aug 2024 12:06:08 +0200 Subject: [PATCH] PHP CS Fixer updated (3.59.3 -> v3.63.1) --- src/Bundle/ChillMainBundle/Tests/Search/AbstractSearchTest.php | 2 +- .../Validator/Constraints/Person/PersonHasCenter.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillMainBundle/Tests/Search/AbstractSearchTest.php b/src/Bundle/ChillMainBundle/Tests/Search/AbstractSearchTest.php index d783cc22c..9c2d90bb7 100644 --- a/src/Bundle/ChillMainBundle/Tests/Search/AbstractSearchTest.php +++ b/src/Bundle/ChillMainBundle/Tests/Search/AbstractSearchTest.php @@ -18,7 +18,7 @@ namespace Chill\MainBundle\Tests\Search; * * @coversNothing */ -final class AbstractSearchTest extends \PHPUnit\Framework\TestCase +final class AbstractSearchTest extends TestCase { /** * @var \Chill\MainBundle\Search\AbstractSearch diff --git a/src/Bundle/ChillPersonBundle/Validator/Constraints/Person/PersonHasCenter.php b/src/Bundle/ChillPersonBundle/Validator/Constraints/Person/PersonHasCenter.php index 2e502f9f3..2398dc882 100644 --- a/src/Bundle/ChillPersonBundle/Validator/Constraints/Person/PersonHasCenter.php +++ b/src/Bundle/ChillPersonBundle/Validator/Constraints/Person/PersonHasCenter.php @@ -12,7 +12,7 @@ declare(strict_types=1); namespace Chill\PersonBundle\Validator\Constraints\Person; #[\Attribute(\Attribute::TARGET_CLASS)] -class PersonHasCenter extends \Symfony\Component\Validator\Constraint +class PersonHasCenter extends Constraint { public string $message = 'A center is required';