From 329077b8eac7aa420a0e158ca73ab86b64d1bd41 Mon Sep 17 00:00:00 2001 From: enekochan Date: Fri, 29 Dec 2017 02:11:50 +0100 Subject: [PATCH] Fix YAML indentation Use same 4 spaces indentation in config examples. --- integrations/symfony-bundle.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/integrations/symfony-bundle.rst b/integrations/symfony-bundle.rst index d547bba..2d2241a 100644 --- a/integrations/symfony-bundle.rst +++ b/integrations/symfony-bundle.rst @@ -221,8 +221,8 @@ The order in which you specify the plugins **does** matter. // services.yml acme_plugin: - class: Acme\Plugin\MyCustomPlugin - arguments: ["%some_parameter%"] + class: Acme\Plugin\MyCustomPlugin + arguments: ["%some_parameter%"] .. code-block:: yaml @@ -239,15 +239,15 @@ The order in which you specify the plugins **does** matter. - 'httplug.plugin.cache' - 'httplug.plugin.retry' - add_host: - host: "http://localhost:8000" + host: "http://localhost:8000" - header_defaults: - headers: - "X-FOO": bar + headers: + "X-FOO": bar - authentication: - acme_basic: - type: 'basic' - username: 'my_username' - password: 'p4ssw0rd' + acme_basic: + type: 'basic' + username: 'my_username' + password: 'p4ssw0rd' Authentication