diff --git a/mailer.rst b/mailer.rst index 721e2144654..a42aecb1d01 100644 --- a/mailer.rst +++ b/mailer.rst @@ -247,7 +247,7 @@ configurable with the ``verify_peer`` option. Although it's not recommended to disable this verification for security reasons, it can be useful while developing the application or when using a self-signed certificate:: - $dsn = 'smtp://user:pass@smtp.example.com?verify_peer=0' + $dsn = 'smtp://user:pass@smtp.example.com?verify_peer=0'; .. versionadded:: 5.1 diff --git a/reference/dic_tags.rst b/reference/dic_tags.rst index 0aca3c91777..5a4716fd3e7 100644 --- a/reference/dic_tags.rst +++ b/reference/dic_tags.rst @@ -316,8 +316,8 @@ is restarted): $container ->register(SomeService::class) - ->addTag('container.preload', ['class' => SomeClass::class) - ->addTag('container.preload', ['class' => OtherClass::class) + ->addTag('container.preload', ['class' => SomeClass::class]) + ->addTag('container.preload', ['class' => OtherClass::class]) // ... ; diff --git a/security.rst b/security.rst index d98506c8ee2..738e35474ea 100644 --- a/security.rst +++ b/security.rst @@ -368,7 +368,6 @@ important section is ``firewalls``: - diff --git a/security/access_control.rst b/security/access_control.rst index 95c57f15a85..2f65dc60281 100644 --- a/security/access_control.rst +++ b/security/access_control.rst @@ -65,7 +65,7 @@ Take the following ``access_control`` entries as an example: https://symfony.com/schema/dic/security/security-1.0.xsd"> - 10.0.0.1, 10.0.0.2 + 10.0.0.1, 10.0.0.2 diff --git a/security/experimental_authenticators.rst b/security/experimental_authenticators.rst index 269aefe01a0..b7734ef88e0 100644 --- a/security/experimental_authenticators.rst +++ b/security/experimental_authenticators.rst @@ -226,6 +226,7 @@ You can configure this using the ``entry_point`` setting: + diff --git a/session/database.rst b/session/database.rst index 71f85e73efc..4aa1bcb4532 100644 --- a/session/database.rst +++ b/session/database.rst @@ -90,7 +90,7 @@ and ``RedisProxy``: arguments: - '@Redis' # you can optionally pass an array of options. The only options are 'prefix' and 'ttl', - # which define the prefix to use for the keys to avoid collision on the Redis server + # which define the prefix to use for the keys to avoid collision on the Redis server # and the expiration time for any given entry (in seconds), defaults are 'sf_s' and null: # - { 'prefix' => 'my_prefix', 'ttl' => 600 } @@ -101,7 +101,7 @@ and ``RedisProxy``: