From 11ce5081ebd0c0bf0b6eb1fa950a7e4a8807a04a Mon Sep 17 00:00:00 2001 From: Robert Freigang Date: Thu, 25 Oct 2018 00:11:38 +0200 Subject: [PATCH] Use spaces instead of tabs in config example of phpstan.neon cause tabs are not allowed and will result in an error after c&p this example and running phpstan. Error message example: ``` Note: Using configuration file /var/www/html/phpstan.neon.dist. In Decoder.php line 357: Invalid combination of tabs and spaces on line 7, column 9. ``` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1017227d..369cc2af 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,10 @@ And include extension.neon in your project's PHPStan config: ``` includes: - - vendor/phpstan/phpstan-symfony/extension.neon + - vendor/phpstan/phpstan-symfony/extension.neon parameters: - symfony: - container_xml_path: %rootDir%/../../../var/cache/dev/appDevDebugProjectContainer.xml # or srcDevDebugProjectContainer.xml for Symfony 4+ + symfony: + container_xml_path: %rootDir%/../../../var/cache/dev/appDevDebugProjectContainer.xml # or srcDevDebugProjectContainer.xml for Symfony 4+ ``` ## Limitations