├── .github ├── dependabot.yml └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .run ├── runIde.run.xml └── test.run.xml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── kotlin │ └── com │ │ └── funivan │ │ └── idea │ │ └── phpClean │ │ ├── actions │ │ └── useNamedConstructor │ │ │ ├── NamedConstructorUsageViewDescriptor.kt │ │ │ ├── UseNamedConstructorAction.html │ │ │ ├── UseNamedConstructorAction.kt │ │ │ ├── UseNamedConstructorHandler.kt │ │ │ └── UseNamedConstructorProcessor.kt │ │ ├── constrains │ │ ├── ConstrainInterface.kt │ │ ├── clazz │ │ │ └── IsAloneClass.kt │ │ └── method │ │ │ ├── IsMagic.kt │ │ │ ├── Name.kt │ │ │ └── aliases │ │ │ └── InvalidClassReturnType.kt │ │ ├── inspections │ │ ├── assignMisused │ │ │ ├── AssignMisusedInspection.html │ │ │ └── AssignMisusedInspection.kt │ │ ├── classNameCollision │ │ │ ├── ClassNameCollisionInspection.html │ │ │ └── ClassNameCollisionInspection.kt │ │ ├── deprecatedDocTag │ │ │ ├── DeprecatedDocTagInspection.html │ │ │ └── DeprecatedDocTagInspection.kt │ │ ├── globalVariableUsage │ │ │ ├── GlobalVariableUsageInspection.html │ │ │ └── GlobalVariableUsageInspection.kt │ │ ├── methodCanBePrivate │ │ │ ├── MethodCanBePrivateInspection.html │ │ │ └── MethodCanBePrivateInspection.kt │ │ ├── methodShouldBeFinal │ │ │ ├── MethodShouldBeFinalInspection.html │ │ │ └── MethodShouldBeFinalInspection.kt │ │ ├── methodVisibility │ │ │ ├── MethodVisibilityInspection.html │ │ │ └── MethodVisibilityInspection.kt │ │ ├── missingParameterType │ │ │ ├── ClassesByFqn.kt │ │ │ ├── Implementations.kt │ │ │ ├── InvalidMethodParameters.kt │ │ │ ├── MissingParameterTypeDeclarationInspection.html │ │ │ ├── MissingParameterTypeDeclarationInspection.kt │ │ │ └── Parameters.kt │ │ ├── missingReturnType │ │ │ ├── MissingReturnTypeInspection.html │ │ │ └── MissingReturnTypeInspection.kt │ │ ├── parentPropertyDeprecated │ │ │ ├── ParentPropertyDeprecatedInspection.html │ │ │ └── ParentPropertyDeprecatedInspection.kt │ │ ├── prohibitedClassExtend │ │ │ ├── ProhibitedClassExtendInspection.html │ │ │ └── ProhibitedClassExtendInspection.kt │ │ ├── propertyAnnotation │ │ │ ├── AddNullTypeQF.kt │ │ │ ├── PropertyAnnotationInspection.html │ │ │ └── PropertyAnnotationInspection.kt │ │ ├── propertyCanBePrivate │ │ │ ├── PropertyCanBePrivateInspection.html │ │ │ └── PropertyCanBePrivateInspection.kt │ │ ├── redundantDocCommentTag │ │ │ ├── RedundantDocCommentTagInspection.html │ │ │ ├── RedundantDocCommentTagInspection.kt │ │ │ └── tags │ │ │ │ ├── ParameterInfo.kt │ │ │ │ ├── ParameterType.kt │ │ │ │ └── ReturnType.kt │ │ ├── toStringCall │ │ │ ├── AddToStringCallQF.kt │ │ │ ├── IsSingleClassType.kt │ │ │ ├── IsToStringContext.kt │ │ │ ├── ToStringCallInspection.html │ │ │ └── ToStringCallInspection.kt │ │ └── virtualTypeCheck │ │ │ ├── UseAssertQF.kt │ │ │ ├── VirtualTypeCheckInspection.html │ │ │ └── VirtualTypeCheckInspection.kt │ │ ├── qf │ │ └── makeClassMemberPrivate │ │ │ └── MakeClassMemberPrivateQF.kt │ │ ├── spl │ │ ├── ParameterDescription.kt │ │ ├── PhpCleanInspection.kt │ │ ├── Pointer.kt │ │ └── jb │ │ │ └── qf │ │ │ └── RemoveTagQF.kt │ │ └── visitors │ │ └── MethodVisitor.kt └── resources │ ├── META-INF │ ├── plugin.xml │ └── pluginIcon.svg │ └── inspectionDescriptions │ └── .gitkeep └── test └── kotlin └── com └── funivan └── idea └── phpClean ├── BaseInspectionTest.kt └── inspections ├── assignMisused └── AssignMisusedInspectionTest.kt ├── classNameCollision └── ClassNameCollisionInspectionTest.kt ├── deprecatedDocTag └── DeprecatedDocTagInspectionTest.kt ├── globalVariableUsage └── GlobalVariableUsageInspectionTest.kt ├── methodCanBePrivate └── MethodCanBePrivateInspectionTest.kt ├── methodShouldBeFinal └── MethodShouldBeFinalInspectionTest.kt ├── methodVisibility └── MethodVisibilityInspectionTest.kt ├── missingParameterType └── MissingParameterTypeDeclarationInspectionTest.kt ├── missingReturnType └── MissingReturnTypeInspectionTest.kt ├── parentPropertyDeprecated └── ParentPropertyDeprecatedInspectionTest.kt ├── prohibitedClassExtend └── ProhibitedClassExtendInspectionTest.kt ├── propertyAnnotation └── PropertyAnnotationInspectionTest.kt ├── propertyCanBePrivate └── PropertyCanBePrivateInspectionTest.kt ├── redundantDocCommentTag └── RedundantDocCommentTagInspectionTest.kt ├── toStringCall ├── ToStringCallInspectionTest.kt ├── ToStringCallInspectionTestFunction.kt ├── ToStringCallInspectionTestTypeCast.kt └── ToStringCallInspectionTestVariable.kt └── virtualTypeCheck └── VirtualTypeCheckInspectionTest.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/runIde.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/.run/runIde.run.xml -------------------------------------------------------------------------------- /.run/test.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/.run/test.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/NamedConstructorUsageViewDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/NamedConstructorUsageViewDescriptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorAction.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/actions/useNamedConstructor/UseNamedConstructorProcessor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/constrains/ConstrainInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/constrains/ConstrainInterface.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/constrains/clazz/IsAloneClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/constrains/clazz/IsAloneClass.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/constrains/method/IsMagic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/constrains/method/IsMagic.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/constrains/method/Name.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/constrains/method/Name.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/constrains/method/aliases/InvalidClassReturnType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/constrains/method/aliases/InvalidClassReturnType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/assignMisused/AssignMisusedInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/assignMisused/AssignMisusedInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/assignMisused/AssignMisusedInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/assignMisused/AssignMisusedInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/classNameCollision/ClassNameCollisionInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/classNameCollision/ClassNameCollisionInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/classNameCollision/ClassNameCollisionInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/classNameCollision/ClassNameCollisionInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/deprecatedDocTag/DeprecatedDocTagInspection.html: -------------------------------------------------------------------------------- 1 | You can deprecate some PhpDoc tags in your project. 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/deprecatedDocTag/DeprecatedDocTagInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/deprecatedDocTag/DeprecatedDocTagInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/globalVariableUsage/GlobalVariableUsageInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/globalVariableUsage/GlobalVariableUsageInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/globalVariableUsage/GlobalVariableUsageInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/globalVariableUsage/GlobalVariableUsageInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/methodCanBePrivate/MethodCanBePrivateInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/methodCanBePrivate/MethodCanBePrivateInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/methodCanBePrivate/MethodCanBePrivateInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/methodCanBePrivate/MethodCanBePrivateInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/methodShouldBeFinal/MethodShouldBeFinalInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/methodShouldBeFinal/MethodShouldBeFinalInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/methodShouldBeFinal/MethodShouldBeFinalInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/methodShouldBeFinal/MethodShouldBeFinalInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/methodVisibility/MethodVisibilityInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/methodVisibility/MethodVisibilityInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/methodVisibility/MethodVisibilityInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/methodVisibility/MethodVisibilityInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/ClassesByFqn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/ClassesByFqn.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/Implementations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/Implementations.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/InvalidMethodParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/InvalidMethodParameters.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/MissingParameterTypeDeclarationInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/MissingParameterTypeDeclarationInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/MissingParameterTypeDeclarationInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/MissingParameterTypeDeclarationInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/Parameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/Parameters.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingReturnType/MissingReturnTypeInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingReturnType/MissingReturnTypeInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/missingReturnType/MissingReturnTypeInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/missingReturnType/MissingReturnTypeInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/parentPropertyDeprecated/ParentPropertyDeprecatedInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/parentPropertyDeprecated/ParentPropertyDeprecatedInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/parentPropertyDeprecated/ParentPropertyDeprecatedInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/parentPropertyDeprecated/ParentPropertyDeprecatedInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/prohibitedClassExtend/ProhibitedClassExtendInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/prohibitedClassExtend/ProhibitedClassExtendInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/prohibitedClassExtend/ProhibitedClassExtendInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/prohibitedClassExtend/ProhibitedClassExtendInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/AddNullTypeQF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/AddNullTypeQF.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/PropertyAnnotationInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/PropertyAnnotationInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/PropertyAnnotationInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/PropertyAnnotationInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyCanBePrivate/PropertyCanBePrivateInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyCanBePrivate/PropertyCanBePrivateInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyCanBePrivate/PropertyCanBePrivateInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/propertyCanBePrivate/PropertyCanBePrivateInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/RedundantDocCommentTagInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/RedundantDocCommentTagInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/RedundantDocCommentTagInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/RedundantDocCommentTagInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/tags/ParameterInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/tags/ParameterInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/tags/ParameterType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/tags/ParameterType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/tags/ReturnType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/tags/ReturnType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/AddToStringCallQF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/AddToStringCallQF.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/IsSingleClassType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/IsSingleClassType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/IsToStringContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/IsToStringContext.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/UseAssertQF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/UseAssertQF.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/VirtualTypeCheckInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/VirtualTypeCheckInspection.html -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/VirtualTypeCheckInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/VirtualTypeCheckInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/qf/makeClassMemberPrivate/MakeClassMemberPrivateQF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/qf/makeClassMemberPrivate/MakeClassMemberPrivateQF.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/spl/ParameterDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/spl/ParameterDescription.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/spl/PhpCleanInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/spl/PhpCleanInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/spl/Pointer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/spl/Pointer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/spl/jb/qf/RemoveTagQF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/spl/jb/qf/RemoveTagQF.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/funivan/idea/phpClean/visitors/MethodVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/kotlin/com/funivan/idea/phpClean/visitors/MethodVisitor.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/BaseInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/BaseInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/assignMisused/AssignMisusedInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/assignMisused/AssignMisusedInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/classNameCollision/ClassNameCollisionInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/classNameCollision/ClassNameCollisionInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/deprecatedDocTag/DeprecatedDocTagInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/deprecatedDocTag/DeprecatedDocTagInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/globalVariableUsage/GlobalVariableUsageInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/globalVariableUsage/GlobalVariableUsageInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/methodCanBePrivate/MethodCanBePrivateInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/methodCanBePrivate/MethodCanBePrivateInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/methodShouldBeFinal/MethodShouldBeFinalInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/methodShouldBeFinal/MethodShouldBeFinalInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/methodVisibility/MethodVisibilityInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/methodVisibility/MethodVisibilityInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/MissingParameterTypeDeclarationInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/missingParameterType/MissingParameterTypeDeclarationInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/missingReturnType/MissingReturnTypeInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/missingReturnType/MissingReturnTypeInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/parentPropertyDeprecated/ParentPropertyDeprecatedInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/parentPropertyDeprecated/ParentPropertyDeprecatedInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/prohibitedClassExtend/ProhibitedClassExtendInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/prohibitedClassExtend/ProhibitedClassExtendInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/PropertyAnnotationInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/propertyAnnotation/PropertyAnnotationInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/propertyCanBePrivate/PropertyCanBePrivateInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/propertyCanBePrivate/PropertyCanBePrivateInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/RedundantDocCommentTagInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/redundantDocCommentTag/RedundantDocCommentTagInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTestFunction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTestFunction.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTestTypeCast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTestTypeCast.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTestVariable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/toStringCall/ToStringCallInspectionTestVariable.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/VirtualTypeCheckInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funivan/PhpClean/HEAD/src/test/kotlin/com/funivan/idea/phpClean/inspections/virtualTypeCheck/VirtualTypeCheckInspectionTest.kt --------------------------------------------------------------------------------