-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved CS and architecture here and there
- Loading branch information
Showing
19 changed files
with
214 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting\SpaceAfterNotSniff; | ||
use SlevomatCodingStandard\Sniffs\Classes\SuperfluousAbstractClassNamingSniff; | ||
use SlevomatCodingStandard\Sniffs\Classes\SuperfluousExceptionNamingSniff; | ||
use SlevomatCodingStandard\Sniffs\Classes\SuperfluousInterfaceNamingSniff; | ||
use SlevomatCodingStandard\Sniffs\ControlStructures\DisallowYodaComparisonSniff; | ||
|
||
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' => 'symfony', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| 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' => [ | ||
DisallowYodaComparisonSniff::class, | ||
SuperfluousAbstractClassNamingSniff::class, | ||
SuperfluousExceptionNamingSniff::class, | ||
SuperfluousInterfaceNamingSniff::class, | ||
SpaceAfterNotSniff::class | ||
], | ||
|
||
'config' => [ | ||
// ExampleInsight::class => [ | ||
// 'key' => 'value', | ||
// ], | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.