We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddad9a5 commit 856ad29Copy full SHA for 856ad29
README.md
@@ -28,14 +28,9 @@ create config `ecs.php`:
28
declare(strict_types=1);
29
30
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
31
-use Symplify\EasyCodingStandard\ValueObject\Option;
32
33
return static function(ContainerConfigurator $containerConfigurator): void {
34
- $parameters = $containerConfigurator->parameters();
35
-
36
- $parameters->set(Option::SETS, [
37
- 'vendor/umbrellio/code-style-php/umbrellio-cs.php'
38
- ]);
+ $containerConfigurator->import(__DIR__ . '/vendor/umbrellio/code-style-php/umbrellio-cs.php');
39
};
40
```
41
0 commit comments