From 9a3d5a256342b82fb11c5888c56f497b642d7585 Mon Sep 17 00:00:00 2001 From: Kevin Bond Date: Sun, 14 Apr 2024 13:31:14 -0400 Subject: [PATCH] [Site] cs fixes --- ux.symfony.com/src/Service/EmojiCollection.php | 9 +++++++++ .../src/Service/LiveDemoRepository.php | 2 +- .../tests/Twig/Components/ChangelogItemTest.php | 17 +++++++++++++---- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/ux.symfony.com/src/Service/EmojiCollection.php b/ux.symfony.com/src/Service/EmojiCollection.php index f30751b8edb..4d6ad7792dd 100644 --- a/ux.symfony.com/src/Service/EmojiCollection.php +++ b/ux.symfony.com/src/Service/EmojiCollection.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace App\Service; /** diff --git a/ux.symfony.com/src/Service/LiveDemoRepository.php b/ux.symfony.com/src/Service/LiveDemoRepository.php index 49783701249..1d917b87299 100644 --- a/ux.symfony.com/src/Service/LiveDemoRepository.php +++ b/ux.symfony.com/src/Service/LiveDemoRepository.php @@ -56,7 +56,7 @@ public function findAll(): array rich interactions and real-time updates. This journey will take you through many features of Live Components, and you'll learn how to use them to create a fun and engaging game. EOF, - tags: ['game', 'time', 'events','LiveAction'], + tags: ['game', 'time', 'events', 'LiveAction'], ), new LiveDemo( 'form-collection-type', diff --git a/ux.symfony.com/tests/Twig/Components/ChangelogItemTest.php b/ux.symfony.com/tests/Twig/Components/ChangelogItemTest.php index ca7d25a81bb..4ff5ad200e1 100644 --- a/ux.symfony.com/tests/Twig/Components/ChangelogItemTest.php +++ b/ux.symfony.com/tests/Twig/Components/ChangelogItemTest.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace App\Tests\Twig\Components; use App\Twig\Components\ChangelogItem; @@ -35,13 +44,13 @@ public static function provideContentValues(): iterable '# Title 1', '# Title 1', ]; - yield "transform_h2_to_h3" => [ + yield 'transform_h2_to_h3' => [ '## Title', - '### Title' + '### Title', ]; yield 'keep_existing_h3' => [ - "### Title 3", - "### Title 3", + '### Title 3', + '### Title 3', ]; yield 'inject_#issue_link' => [ 'Fixes #1234',