From f43a126d389d56c0026988cb016e1b40d4377cd9 Mon Sep 17 00:00:00 2001 From: Sonata CI Date: Wed, 3 Apr 2024 19:22:49 +0100 Subject: [PATCH] DevKit updates for 3.x branch (#749) Co-authored-by: Vincent Langlet --- .php-cs-fixer.dist.php | 2 +- tests/Twig/Extension/SeoExtensionTest.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index d197afd5..67707a5e 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -45,7 +45,7 @@ 'no_useless_return' => true, 'no_superfluous_elseif' => true, 'no_superfluous_phpdoc_tags' => ['allow_mixed' => true, 'remove_inheritdoc' => true], - 'nullable_type_declaration_for_default_null_value' => ['use_nullable_type_declaration' => true], + 'nullable_type_declaration_for_default_null_value' => true, 'ordered_class_elements' => true, 'ordered_imports' => ['sort_algorithm' => 'alpha', 'imports_order' => ['class', 'function', 'const']], 'phpdoc_order' => ['order' => ['var', 'param', 'throws', 'return', 'phpstan-var', 'psalm-var', 'phpstan-param', 'psalm-param', 'phpstan-return', 'psalm-return']], diff --git a/tests/Twig/Extension/SeoExtensionTest.php b/tests/Twig/Extension/SeoExtensionTest.php index ddc3b7d8..e6e9b3f2 100644 --- a/tests/Twig/Extension/SeoExtensionTest.php +++ b/tests/Twig/Extension/SeoExtensionTest.php @@ -134,8 +134,8 @@ public function testLangAlternates(): void { $page = $this->createMock(SeoPageInterface::class); $page->expects(static::once())->method('getLangAlternates')->willReturn([ - 'http://example.com/' => 'x-default', - ]); + 'http://example.com/' => 'x-default', + ]); $extension = new SeoExtension($page, 'UTF-8');