Skip to content

Commit 9a3d5a2

Browse files
committed
[Site] cs fixes
1 parent 6786b5d commit 9a3d5a2

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

ux.symfony.com/src/Service/EmojiCollection.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace App\Service;
413

514
/**

ux.symfony.com/src/Service/LiveDemoRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function findAll(): array
5656
rich interactions and real-time updates. This journey will take you through many features of Live Components, and you'll
5757
learn how to use them to create a fun and engaging game.
5858
EOF,
59-
tags: ['game', 'time', 'events','LiveAction'],
59+
tags: ['game', 'time', 'events', 'LiveAction'],
6060
),
6161
new LiveDemo(
6262
'form-collection-type',

ux.symfony.com/tests/Twig/Components/ChangelogItemTest.php

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace App\Tests\Twig\Components;
413

514
use App\Twig\Components\ChangelogItem;
@@ -35,13 +44,13 @@ public static function provideContentValues(): iterable
3544
'# Title 1',
3645
'# Title 1',
3746
];
38-
yield "transform_h2_to_h3" => [
47+
yield 'transform_h2_to_h3' => [
3948
'## Title',
40-
'### Title'
49+
'### Title',
4150
];
4251
yield 'keep_existing_h3' => [
43-
"### Title 3",
44-
"### Title 3",
52+
'### Title 3',
53+
'### Title 3',
4554
];
4655
yield 'inject_#issue_link' => [
4756
'Fixes #1234',

0 commit comments

Comments
 (0)