From 81fc8edb5110a1c833dd1d56e219c81c7330d0da Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Fri, 23 May 2014 16:51:38 +0200 Subject: [PATCH] Tabs to spaces to be consistent ``` vendor/bin/indent --spaces -r framework/ vendor/bin/indent --tabs -r . --pattern=*.json vendor/bin/indent --spaces -r . --pattern=*.md vendor/bin/indent --spaces -r . --pattern=yii.*.js vendor/bin/indent --spaces -r . --pattern=*.css ``` --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e21998d..fa987c8 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ To use this extension, simply add the following code in your application config ```php return [ - //.... - 'components' => [ - 'mail' => [ - 'class' => 'yii\swiftmailer\Mailer', - ], - ], + //.... + 'components' => [ + 'mail' => [ + 'class' => 'yii\swiftmailer\Mailer', + ], + ], ]; ```