diff --git a/symfony/framework-bundle/3.3/config/packages/framework.yaml b/symfony/framework-bundle/3.3/config/packages/framework.yaml index 05613d20..76e742a9 100644 --- a/symfony/framework-bundle/3.3/config/packages/framework.yaml +++ b/symfony/framework-bundle/3.3/config/packages/framework.yaml @@ -1,9 +1,9 @@ framework: secret: '%env(APP_SECRET)%' #default_locale: en - #csrf_protection: null + #csrf_protection: ~ #http_method_override: true - #trusted_hosts: null + #trusted_hosts: ~ # https://symfony.com/doc/current/reference/configuration/framework.html#handler-id #session: # handler_id: session.handler.native_file diff --git a/symfony/framework-bundle/3.3/config/packages/test/framework.yaml b/symfony/framework-bundle/3.3/config/packages/test/framework.yaml index 2ad0bdef..76d7e5e1 100644 --- a/symfony/framework-bundle/3.3/config/packages/test/framework.yaml +++ b/symfony/framework-bundle/3.3/config/packages/test/framework.yaml @@ -1,4 +1,4 @@ framework: - test: null + test: ~ session: storage_id: session.storage.mock_file diff --git a/symfony/routing/3.3/config/packages/routing.yaml b/symfony/routing/3.3/config/packages/routing.yaml index b3e6a0af..368bc7f4 100644 --- a/symfony/routing/3.3/config/packages/routing.yaml +++ b/symfony/routing/3.3/config/packages/routing.yaml @@ -1,3 +1,3 @@ framework: router: - strict_requirements: null + strict_requirements: ~ diff --git a/symfony/security-bundle/3.3/config/packages/security.yaml b/symfony/security-bundle/3.3/config/packages/security.yaml index cd6a45b7..eea9b2ff 100644 --- a/symfony/security-bundle/3.3/config/packages/security.yaml +++ b/symfony/security-bundle/3.3/config/packages/security.yaml @@ -1,18 +1,18 @@ security: # https://symfony.com/doc/current/book/security.html#where-do-users-come-from-user-providers providers: - in_memory: { memory: null } + in_memory: { memory: ~ } firewalls: dev: pattern: ^/(_(profiler|wdt)|css|images|js)/ security: false main: - anonymous: null + anonymous: ~ # activate different ways to authenticate - # http_basic: null + # http_basic: ~ # https://symfony.com/doc/current/book/security.html#a-configuring-how-your-users-will-authenticate - # form_login: null + # form_login: ~ # https://symfony.com/doc/current/cookbook/security/form_login_setup.html