Skip to content

[Site] cs fixes #1735

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions ux.symfony.com/src/Service/EmojiCollection.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace App\Service;

/**
Expand Down
2 changes: 1 addition & 1 deletion ux.symfony.com/src/Service/LiveDemoRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
17 changes: 13 additions & 4 deletions ux.symfony.com/tests/Twig/Components/ChangelogItemTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* 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;
Expand Down Expand Up @@ -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',
Expand Down