← Back
Editing: phpinsights.php
<?php declare(strict_types=1); return [ /* |-------------------------------------------------------------------------- | Default Preset |-------------------------------------------------------------------------- | | This option controls the default preset that will be used by PHP Insights | to make your code reliable, simple, and clean. However, you can always | adjust the `Metrics` and `Insights` below in this configuration file. | | Supported: "default", "laravel", "symfony", "magento2", "drupal" | */ 'preset' => 'default', /* |-------------------------------------------------------------------------- | Configuration |-------------------------------------------------------------------------- | | Here you may adjust all the various `Insights` that will be used by PHP | Insights. You can either add, remove or configure `Insights`. Keep in | mind, that all added `Insights` must belong to a specific `Metric`. | */ 'exclude' => [ // 'path/to/directory-or-file' ], 'add' => [ // ExampleMetric::class => [ // ExampleInsight::class, // ] ], 'remove' => [ // ExampleInsight::class, ], 'config' => [ \ObjectCalisthenics\Sniffs\Metrics\MaxNestingLevelSniff::class => [ 'maxNestingLevel' => 3, ], ], ];
Save File
Cancel