Skip to content

Commit 7f414c8

Browse files
committed
improvements, fixes and removing experimental from non-experimental classes
1 parent ad7a339 commit 7f414c8

File tree

7 files changed

+3
-12
lines changed

7 files changed

+3
-12
lines changed

src/StimulusBundle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This bundle adds integration between Symfony, Stimulus and Symfony UX:
44

55
- A) Twig `stimulus_*` functions & filters to add Stimulus controllers, actions & targets in your templates;
6-
- B) Integration with Symfony UX & AssetMapper (this integration is **experimental**)
6+
- B) Integration with Symfony UX & AssetMapper (this integration is [experimental](https://symfony.com/doc/current/contributing/code/experimental.html)
77
- C) A helper service to build the Stimulus data attributes and use them in your services.
88

99
[Read the documentation][1]

src/StimulusBundle/doc/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ StimulusBundle: Symfony integration with Stimulus
44
This bundle adds integration between Symfony, `Stimulus`_ and Symfony UX:
55

66
A) Twig `stimulus_*` functions & filters to add Stimulus controllers, actions & targets in your templates;
7-
- B) Integration with Symfony UX & AssetMapper (this integration is **experimental**)
7+
B) Integration with Symfony UX & AssetMapper (this integration is `experimental`_)
88
C) A helper service to build the Stimulus data attributes and use them in your services.
99

1010
Installation
@@ -311,3 +311,4 @@ is running in debug mode.
311311
.. _`parameters`: https://stimulus.hotwired.dev/reference/actions#action-parameters
312312
.. _`Stimulus Targets`: https://stimulus.hotwired.dev/reference/targets
313313
.. _`StimulusBundle Flex recipe`: https://github.com/symfony/recipes/tree/main/symfony/stimulus-bundle
314+
.. _`experimental`: https://symfony.com/doc/current/contributing/code/experimental.html

src/StimulusBundle/src/DependencyInjection/StimulusExtension.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
2424

2525
/**
26-
* @experimental
27-
*
2826
* @author Ryan Weaver <ryan@symfonycasts.com>
2927
*/
3028
final class StimulusExtension extends Extension implements PrependExtensionInterface, ConfigurationInterface

src/StimulusBundle/src/Dto/StimulusAttributes.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
/**
1717
* Helper to build Stimulus-related HTML attributes.
1818
*
19-
* @experimental
20-
*
2119
* @author Ryan Weaver <ryan@symfonycasts.com>
2220
*/
2321
class StimulusAttributes implements \Stringable, \IteratorAggregate

src/StimulusBundle/src/Helper/StimulusHelper.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
use Twig\Loader\ArrayLoader;
1717

1818
/**
19-
* @experimental
20-
*
2119
* @author Ryan Weaver <ryan@symfonycasts.com>
2220
*/
2321
final class StimulusHelper

src/StimulusBundle/src/StimulusBundle.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
use Symfony\UX\StimulusBundle\DependencyInjection\Compiler\RemoveAssetMapperServicesCompiler;
1515

1616
/**
17-
* @experimental
18-
*
1917
* @author Ryan Weaver <ryan@symfonycasts.com>
2018
*/
2119
final class StimulusBundle extends Bundle

src/StimulusBundle/src/Twig/StimulusTwigExtension.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
use Twig\TwigFunction;
1919

2020
/**
21-
* @experimental
22-
*
2321
* @author Ryan Weaver <ryan@symfonycasts.com>
2422
*/
2523
final class StimulusTwigExtension extends AbstractExtension

0 commit comments

Comments
 (0)