File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
Filter options
Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
Original file line number Diff line number Diff line change 1
1
rules :
2
2
american_english : ~
3
+ argument_variable_must_match_type :
4
+ arguments :
5
+ - { type: 'ContainerBuilder', name: 'containerBuilder' }
6
+ - { type: 'ContainerConfigurator', name: 'containerConfigurator' }
3
7
avoid_repetetive_words : ~
4
8
blank_line_after_anchor : ~
5
9
blank_line_after_directive : ~
@@ -96,6 +100,5 @@ whitelist:
96
100
- ' .. versionadded:: 3.6' # MonologBundle
97
101
- ' // bin/console'
98
102
- ' End to End Tests (E2E)'
99
- - ' .. code-block:: php'
100
103
- ' .. _`a feature to test applications using Mercure`: https://github.com/symfony/panther#creating-isolated-browsers-to-test-apps-using-mercure-or-websocket'
101
104
- ' .. End to End Tests (E2E)'
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ configure the behavior of the factory using configuration files::
132
132
133
133
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
134
134
135
- return static function (ContainerConfigurator $configurator ): void {
135
+ return static function (ContainerConfigurator $containerConfigurator ): void {
136
136
$services = $configurator->services()
137
137
->defaults()
138
138
->autowire()
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ You can configure this using the ``entry_point`` setting:
61
61
.. code-block :: php
62
62
63
63
// config/packages/security.php
64
- use Symfony\Config\SecurityConfig;
65
64
use App\Security\SocialConnectAuthenticator;
65
+ use Symfony\Config\SecurityConfig;
66
66
67
67
return static function (SecurityConfig $security) {
68
68
$security->enableAuthenticatorManager(true);
Original file line number Diff line number Diff line change @@ -156,8 +156,8 @@ configuration:
156
156
.. code-block :: php
157
157
158
158
// config/packages/framework.php
159
- use Symfony\Config\FrameworkConfig;
160
159
use Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer;
160
+ use Symfony\Config\FrameworkConfig;
161
161
162
162
return static function (FrameworkConfig $framework) {
163
163
$framework->serializer()
Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ the ``@`` character, which is the usual syntax to
99
99
.. code-block :: php
100
100
101
101
// config/packages/twig.php
102
- use Symfony\Config\TwigConfig;
103
102
use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
103
+ use Symfony\Config\TwigConfig;
104
104
105
105
return static function (TwigConfig $twig) {
106
106
// ...
You can’t perform that action at this time.
0 commit comments