From 447c0ee0f42514b21efa5cd6ff68854a3726fb4c Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Tue, 14 Nov 2023 08:06:45 +0100 Subject: [PATCH] Add missing brace in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac983c14..f6596ce7 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ This will enable and configure the [`HeaderCommentFixer`](https://github.com/Fri +$ruleSet = Config\RuleSet\Php82::create()->withRules(Config\Rules::fromArray([ + 'mb_str_functions' => false, + 'strict_comparison' => false, -+]); ++])); $config = Config\Factory::fromRuleSet($ruleSet);