upgrade php-cs-fixer to 3.47.0

This commit is contained in:
2024-01-22 12:14:39 +01:00
parent fdfc3fb7ec
commit 27ce322690
58 changed files with 114 additions and 113 deletions

View File

@@ -25,7 +25,7 @@ use PHPUnit\Framework\TestCase;
*/
final class SearchProviderTest extends TestCase
{
private \Chill\MainBundle\Search\SearchProvider $search;
private SearchProvider $search;
protected function setUp(): void
{

View File

@@ -40,7 +40,7 @@ final class PhonenumberNormalizerTest extends TestCase
/**
* @dataProvider dataProviderNormalizePhonenumber
*/
public function testNormalize(?Phonenumber $phonenumber, mixed $format, mixed $context, mixed $expected)
public function testNormalize(?PhoneNumber $phonenumber, mixed $format, mixed $context, mixed $expected)
{
$parameterBag = $this->prophesize(ParameterBagInterface::class);
$parameterBag->get(Argument::exact('chill_main'))->willReturn(['phone_helper' => ['default_carrier_code' => 'BE']]);