Skip to content
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 <fabien@symfony.com>
*
* 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 <fabien@symfony.com>
*
* 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