Skip to content

Commit 00f7b14

Browse files
committed
replaced ~ by null
1 parent f0e5358 commit 00f7b14

File tree

12 files changed

+16
-15
lines changed

12 files changed

+16
-15
lines changed

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ the recipe:
294294
* YAML files suffix must be ``.yaml``, not ``.yml``;
295295
* YAML files must be valid;
296296
* YAML files must use 4 space indentations;
297+
* YAML files use ``null`` instead of ``~``;
297298
* YAML files under config/packages must not define a "parameters" section;
298299
* JSON files must be valid;
299300
* JSON files must use 4 space indentations;

nelmio/cors-bundle/1.5/config/packages/nelmio_cors.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ nelmio_cors:
77
expose_headers: ['Link']
88
max_age: 3600
99
paths:
10-
'^/': ~
10+
'^/': null

sensiolabs/security-checker/4.0/config/packages/security_checker.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ services:
33
autowire: true
44
autoconfigure: true
55

6-
SensioLabs\Security\SecurityChecker: ~
6+
SensioLabs\Security\SecurityChecker: null
77

8-
SensioLabs\Security\Command\SecurityCheckerCommand: ~
8+
SensioLabs\Security\Command\SecurityCheckerCommand: null

symfony/framework-bundle/3.3/config/packages/cache.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ framework:
1616

1717
# Namespaced pools use the above "app" backend by default
1818
#pools:
19-
#my.dedicated.cache: ~
19+
#my.dedicated.cache: null

symfony/framework-bundle/3.3/config/packages/framework.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ framework:
66
# Enables session support. Note that the session will ONLY be started if you read or write from it.
77
# Remove or comment this section to explicitly disable session support.
88
session:
9-
handler_id: ~
9+
handler_id: null
1010

1111
#esi: true
1212
#fragments: true

symfony/framework-bundle/4.2/config/packages/framework.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ framework:
66
# Enables session support. Note that the session will ONLY be started if you read or write from it.
77
# Remove or comment this section to explicitly disable session support.
88
session:
9-
handler_id: ~
9+
handler_id: null
1010
cookie_secure: auto
1111
cookie_samesite: lax
1212

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
framework:
22
router:
3-
strict_requirements: ~
3+
strict_requirements: null
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
framework:
22
router:
3-
strict_requirements: ~
3+
strict_requirements: null
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
framework:
22
router:
3-
strict_requirements: ~
3+
strict_requirements: null
44
utf8: true

symfony/security-bundle/3.3/config/packages/security.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
security:
22
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
33
providers:
4-
in_memory: { memory: ~ }
4+
in_memory: { memory: null }
55
firewalls:
66
dev:
77
pattern: ^/(_(profiler|wdt)|css|images|js)/
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
framework:
2-
workflows: ~
2+
workflows: null

twig/extensions/1.0/config/packages/twig_extensions.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
autoconfigure: true
66

77
# 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

0 commit comments

Comments
 (0)