'remove' => [
AlphabeticallySortedUsesSniff::class,
DeclareStrictTypesSniff::class,
DisallowMixedTypeHintSniff::class,
ForbiddenDefineFunctions::class,
ForbiddenNormalClasses::class,
ForbiddenTraits::class,
ParameterTypeHintSniff::class,
PropertyTypeHintSniff::class,
ReturnTypeHintSniff::class,
UselessFunctionDocCommentSniff::class,
SuperfluousInterfaceNamingSniff::class,
SuperfluousTraitNamingSniff::class,
SuperfluousExceptionNamingSniff::class,
SuperfluousAbstractClassNamingSniff::class,
ForbiddenPublicPropertySniff::class,
ForbiddenSetterSniff::class,
InlineDocCommentDeclarationSniff::class,
OrderedImportsFixer::class,
ClassDefinitionFixer::class,
BracesFixer::class,
ScopeClosingBraceSniff::class,
DocCommentSpacingSniff::class,
],
[Architecture] Normal classes are forbidden. Classes must be final or abstract:
app/....php
Am I doing something wrong? It's supposed to not get this message.
Hi,
I have this remove array in config/insights.php
As you can see there is the
ForbiddenNormalClasses::classstring.When I exeute the command, I get this message:
Am I doing something wrong? It's supposed to not get this message.