File tree 12 files changed +16
-15
lines changed
nelmio/cors-bundle/1.5/config/packages
sensiolabs/security-checker/4.0/config/packages
security-bundle/3.3/config/packages
workflow/3.3/config/packages
twig/extensions/1.0/config/packages
12 files changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -294,6 +294,7 @@ the recipe:
294
294
* YAML files suffix must be ``.yaml ``, not ``.yml ``;
295
295
* YAML files must be valid;
296
296
* YAML files must use 4 space indentations;
297
+ * YAML files use ``null `` instead of ``~ ``;
297
298
* YAML files under config/packages must not define a "parameters" section;
298
299
* JSON files must be valid;
299
300
* JSON files must use 4 space indentations;
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ nelmio_cors:
7
7
expose_headers : ['Link']
8
8
max_age : 3600
9
9
paths :
10
- ' ^/ ' : ~
10
+ ' ^/ ' : null
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ services:
3
3
autowire : true
4
4
autoconfigure : true
5
5
6
- SensioLabs\Security\SecurityChecker : ~
6
+ SensioLabs\Security\SecurityChecker : null
7
7
8
- SensioLabs\Security\Command\SecurityCheckerCommand : ~
8
+ SensioLabs\Security\Command\SecurityCheckerCommand : null
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ framework:
16
16
17
17
# Namespaced pools use the above "app" backend by default
18
18
# pools:
19
- # my.dedicated.cache: ~
19
+ # my.dedicated.cache: null
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ framework:
6
6
# Enables session support. Note that the session will ONLY be started if you read or write from it.
7
7
# Remove or comment this section to explicitly disable session support.
8
8
session :
9
- handler_id : ~
9
+ handler_id : null
10
10
11
11
# esi: true
12
12
# fragments: true
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ framework:
6
6
# Enables session support. Note that the session will ONLY be started if you read or write from it.
7
7
# Remove or comment this section to explicitly disable session support.
8
8
session :
9
- handler_id : ~
9
+ handler_id : null
10
10
cookie_secure : auto
11
11
cookie_samesite : lax
12
12
Original file line number Diff line number Diff line change 1
1
framework :
2
2
router :
3
- strict_requirements : ~
3
+ strict_requirements : null
Original file line number Diff line number Diff line change 1
1
framework :
2
2
router :
3
- strict_requirements : ~
3
+ strict_requirements : null
Original file line number Diff line number Diff line change 1
1
framework :
2
2
router :
3
- strict_requirements : ~
3
+ strict_requirements : null
4
4
utf8 : true
Original file line number Diff line number Diff line change 1
1
security :
2
2
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
3
3
providers :
4
- in_memory : { memory: ~ }
4
+ in_memory : { memory: null }
5
5
firewalls :
6
6
dev :
7
7
pattern : ^/(_(profiler|wdt)|css|images|js)/
Original file line number Diff line number Diff line change 1
1
framework :
2
- workflows : ~
2
+ workflows : null
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ services:
5
5
autoconfigure : true
6
6
7
7
# Uncomment any lines below to activate that Twig extension
8
- # Twig\Extensions\ArrayExtension: ~
9
- # Twig\Extensions\DateExtension: ~
10
- # Twig\Extensions\IntlExtension: ~
11
- # Twig\Extensions\TextExtension: ~
8
+ # Twig\Extensions\ArrayExtension: null
9
+ # Twig\Extensions\DateExtension: null
10
+ # Twig\Extensions\IntlExtension: null
11
+ # Twig\Extensions\TextExtension: null
You can’t perform that action at this time.
0 commit comments