├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── release.yml │ └── run-ui-tests.yml ├── .gitignore ├── .run ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml └── Run Plugin Verification.run.xml ├── CHANGELOG.md ├── README.md ├── art ├── header.png ├── logo.png ├── logo.svg ├── logo@2x.png ├── logo@3x.png ├── logo@4x.png ├── logomark.png ├── logomark@2x.png ├── logomark@3x.png ├── logomark@4x.png ├── socialcard.png └── usage │ ├── array_map.gif │ ├── closureToArrow.gif │ ├── flatmap.gif │ ├── foreach.gif │ ├── inspection.jpg │ ├── recursiveCollection.gif │ ├── where-first-to-firstWhere.gif │ └── whereIsNotEmpty-to-contains.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── dev │ │ └── nybroe │ │ └── collector │ │ ├── CollectionPsiFactory.kt │ │ ├── MyBundle.kt │ │ ├── Util.kt │ │ ├── blade │ │ └── BladePhpInspectionSuppressor.kt │ │ ├── inspections │ │ ├── ArrayMapToCollectionInspection.kt │ │ ├── ClosureToArrowFunctionInspection.kt │ │ ├── CollectFunctionInCollectionInspection.kt │ │ ├── ForeachToCollectionInspection.kt │ │ ├── MapFlattenToFlatMapInspection.kt │ │ ├── WhereFirstInspection.kt │ │ └── WhereIsNotEmptyInspection.kt │ │ ├── listeners │ │ └── ChecksInspectionsEnabledProjectActivity.kt │ │ ├── quickFixes │ │ ├── ArrayMapToCollectionQuickFix.kt │ │ ├── ClosureToArrowFunctionQuickFix.kt │ │ ├── ForeachToCollectionQuickFix.kt │ │ ├── MapFlattenToFlatMapQuickFix.kt │ │ ├── NestedCollectionQuickFix.kt │ │ ├── WhereFirstToFirstWhereQuickFix.kt │ │ └── WhereIsNotEmptyToContainsQuickFix.kt │ │ └── services │ │ └── ChecksInspectionsEnabledService.kt └── resources │ ├── META-INF │ ├── blade.xml │ ├── plugin.xml │ └── pluginIcon.svg │ ├── inspectionDescriptions │ ├── ArrayMapToCollectionInspection.html │ └── ForeachToCollectionInspection.html │ └── messages │ └── MyBundle.properties └── test ├── kotlin └── dev │ └── nybroe │ └── collector │ ├── BaseCollectTestCase.kt │ ├── UtilTest.kt │ ├── inspections │ ├── ArrayMapToCollectionInspectionTest.kt │ ├── ClosureToArrowFunctionInspectionTest.kt │ ├── CollectFunctionOnCollectionInspectionTest.kt │ ├── ForeachToCollectionInspectionTest.kt │ ├── InspectionTest.kt │ ├── MapFlattenToFlatMapInspectionTest.kt │ ├── WhereFirstInspectionTest.kt │ └── WhereIsNotEmptyInspectionTest.kt │ └── types │ ├── CollectionTypeProviderTest.kt │ └── HigherOrderTypeTest.kt └── resources ├── inspections ├── ArrayMapToCollectionInspection │ ├── array_map-callback-and-array.after.php │ ├── array_map-callback-and-array.php │ ├── array_map-callback-and-variable.after.php │ ├── array_map-callback-and-variable.php │ ├── array_map-in-namespace.after.php │ ├── array_map-in-namespace.php │ ├── namespaced_array_map.after.php │ └── namespaced_array_map.php ├── ClosureToArrowFunctionInspection │ ├── each-function-call-to-arrow-function-from-variable.after.php │ ├── each-function-call-to-arrow-function-from-variable.php │ ├── each-function-call-to-arrow-function-with-return.after.php │ ├── each-function-call-to-arrow-function-with-return.php │ ├── each-function-call-to-arrow-function-with-uses.after.php │ ├── each-function-call-to-arrow-function-with-uses.php │ ├── each-function-call-to-arrow-function.after.php │ ├── each-function-call-to-arrow-function.php │ └── nonMatches │ │ ├── each-function-call-to-arrow-function-echo.php │ │ ├── each-function-call-to-arrow-function-php730.php │ │ ├── each-function-call-to-arrow-function-with-uses-by-reference.php │ │ ├── foreach-closure-to-arrow-function.php │ │ ├── function-call-to-arrow-function-not-in-collection.php │ │ └── if-closure-to-arrow-function.php ├── CollectFunctionInCollectionInspection │ ├── collect_in_collect.after.php │ ├── collect_in_collect.php │ ├── collect_on_collect_variable.after.php │ ├── collect_on_collect_variable.php │ ├── collect_on_eloquent_collect_variable.after.php │ ├── collect_on_eloquent_collect_variable.php │ └── nonMatches │ │ ├── collect_on_iterable_variable.php │ │ ├── collect_on_mixed_variable.php │ │ ├── collect_on_no_type_variable.php │ │ ├── collect_on_stdClass_property.php │ │ └── collect_on_union_collection_type.php ├── ForeachToCollectionInspection │ ├── foreach-array-variable-using-property-accessor.after.php │ ├── foreach-array-variable-using-property-accessor.php │ ├── foreach-key-value-multi-statement.after.php │ ├── foreach-key-value-multi-statement.php │ ├── foreach-key-value.after.php │ ├── foreach-key-value.php │ ├── foreach-outer-scope-this-variable.after.php │ ├── foreach-outer-scope-this-variable.php │ ├── foreach-outer-scope-variable-used-twice.after.php │ ├── foreach-outer-scope-variable-used-twice.php │ ├── foreach-outer-scope-variable.after.php │ ├── foreach-outer-scope-variable.php │ ├── foreach-string-interpolation-with-property-access.after.php │ ├── foreach-string-interpolation-with-property-access.php │ ├── foreach-string-interpolation-without-braces.after.php │ ├── foreach-string-interpolation-without-braces.php │ ├── foreach-string-interpolation.after.php │ ├── foreach-string-interpolation.php │ ├── foreach-using-foreach-array-variable.after.php │ ├── foreach-using-foreach-array-variable.php │ ├── foreach-value-only.after.php │ ├── foreach-value-only.php │ └── nonMatches │ │ └── foreach-blade-directive.blade.php ├── MapFlattenToFlatMapInspection │ ├── map_flatten-to-flatmap-with-indentation.after.php │ ├── map_flatten-to-flatmap-with-indentation.php │ ├── map_flatten_to_flatmap.after.php │ ├── map_flatten_to_flatmap.php │ ├── map_flatten_to_flatmap_with_other_method_calls.after.php │ ├── map_flatten_to_flatmap_with_other_method_calls.php │ └── nonMatches │ │ ├── map_flatten_depth_2.php │ │ └── map_flatten_depth_infinite.php ├── WhereFirstInspection │ ├── nonMatches │ │ └── where-first-with-arguments-in-first.php │ ├── where-first-to-firstWhere.after.php │ └── where-first-to-firstWhere.php └── WhereIsNotEmptyInspection │ ├── where-isNotEmpty-to-contains.after.php │ └── where-isNotEmpty-to-contains.php ├── stubs.php └── types ├── CollectionTypeProvider ├── CollectionTypeArraySyntax.php └── CollectionTypeGenericSyntax.php └── HigherOrderMethodsTypeProvider ├── higherOrderMethod.php └── higherOrderProperty.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: olivernybroe 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.github/workflows/run-ui-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Verification.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/.run/Run Plugin Verification.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/README.md -------------------------------------------------------------------------------- /art/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/header.png -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logo.png -------------------------------------------------------------------------------- /art/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logo.svg -------------------------------------------------------------------------------- /art/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logo@2x.png -------------------------------------------------------------------------------- /art/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logo@3x.png -------------------------------------------------------------------------------- /art/logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logo@4x.png -------------------------------------------------------------------------------- /art/logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logomark.png -------------------------------------------------------------------------------- /art/logomark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logomark@2x.png -------------------------------------------------------------------------------- /art/logomark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logomark@3x.png -------------------------------------------------------------------------------- /art/logomark@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/logomark@4x.png -------------------------------------------------------------------------------- /art/socialcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/socialcard.png -------------------------------------------------------------------------------- /art/usage/array_map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/array_map.gif -------------------------------------------------------------------------------- /art/usage/closureToArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/closureToArrow.gif -------------------------------------------------------------------------------- /art/usage/flatmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/flatmap.gif -------------------------------------------------------------------------------- /art/usage/foreach.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/foreach.gif -------------------------------------------------------------------------------- /art/usage/inspection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/inspection.jpg -------------------------------------------------------------------------------- /art/usage/recursiveCollection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/recursiveCollection.gif -------------------------------------------------------------------------------- /art/usage/where-first-to-firstWhere.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/where-first-to-firstWhere.gif -------------------------------------------------------------------------------- /art/usage/whereIsNotEmpty-to-contains.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/art/usage/whereIsNotEmpty-to-contains.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "collections-intellij" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/CollectionPsiFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/CollectionPsiFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/MyBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/MyBundle.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/Util.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/blade/BladePhpInspectionSuppressor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/blade/BladePhpInspectionSuppressor.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/ArrayMapToCollectionInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/ArrayMapToCollectionInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/ClosureToArrowFunctionInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/ClosureToArrowFunctionInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/CollectFunctionInCollectionInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/CollectFunctionInCollectionInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/ForeachToCollectionInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/ForeachToCollectionInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/MapFlattenToFlatMapInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/MapFlattenToFlatMapInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/WhereFirstInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/WhereFirstInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/inspections/WhereIsNotEmptyInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/inspections/WhereIsNotEmptyInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/listeners/ChecksInspectionsEnabledProjectActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/listeners/ChecksInspectionsEnabledProjectActivity.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/ArrayMapToCollectionQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/ArrayMapToCollectionQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/ClosureToArrowFunctionQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/ClosureToArrowFunctionQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/ForeachToCollectionQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/ForeachToCollectionQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/MapFlattenToFlatMapQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/MapFlattenToFlatMapQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/NestedCollectionQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/NestedCollectionQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/WhereFirstToFirstWhereQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/WhereFirstToFirstWhereQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/quickFixes/WhereIsNotEmptyToContainsQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/quickFixes/WhereIsNotEmptyToContainsQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/dev/nybroe/collector/services/ChecksInspectionsEnabledService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/kotlin/dev/nybroe/collector/services/ChecksInspectionsEnabledService.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/blade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/resources/META-INF/blade.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ArrayMapToCollectionInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/resources/inspectionDescriptions/ArrayMapToCollectionInspection.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ForeachToCollectionInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/resources/inspectionDescriptions/ForeachToCollectionInspection.html -------------------------------------------------------------------------------- /src/main/resources/messages/MyBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/main/resources/messages/MyBundle.properties -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/BaseCollectTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/BaseCollectTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/UtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/UtilTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/ArrayMapToCollectionInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/ArrayMapToCollectionInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/ClosureToArrowFunctionInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/ClosureToArrowFunctionInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/CollectFunctionOnCollectionInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/CollectFunctionOnCollectionInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/ForeachToCollectionInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/ForeachToCollectionInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/InspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/InspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/MapFlattenToFlatMapInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/MapFlattenToFlatMapInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/WhereFirstInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/WhereFirstInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/inspections/WhereIsNotEmptyInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/inspections/WhereIsNotEmptyInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/types/CollectionTypeProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/types/CollectionTypeProviderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/dev/nybroe/collector/types/HigherOrderTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/kotlin/dev/nybroe/collector/types/HigherOrderTypeTest.kt -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-array.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-array.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-array.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-callback-and-variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-in-namespace.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-in-namespace.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-in-namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/array_map-in-namespace.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/namespaced_array_map.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/namespaced_array_map.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ArrayMapToCollectionInspection/namespaced_array_map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ArrayMapToCollectionInspection/namespaced_array_map.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-from-variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-from-variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-from-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-from-variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-return.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-return.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-return.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-return.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-uses.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-uses.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-uses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function-with-uses.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/each-function-call-to-arrow-function.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/each-function-call-to-arrow-function-echo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/each-function-call-to-arrow-function-echo.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/each-function-call-to-arrow-function-php730.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/each-function-call-to-arrow-function-php730.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/each-function-call-to-arrow-function-with-uses-by-reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/each-function-call-to-arrow-function-with-uses-by-reference.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/foreach-closure-to-arrow-function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/foreach-closure-to-arrow-function.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/function-call-to-arrow-function-not-in-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/function-call-to-arrow-function-not-in-collection.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/if-closure-to-arrow-function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ClosureToArrowFunctionInspection/nonMatches/if-closure-to-arrow-function.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_in_collect.after.php: -------------------------------------------------------------------------------- 1 | sum(); 4 | -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_in_collect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_in_collect.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_collect_variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_collect_variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_collect_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_collect_variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_eloquent_collect_variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_eloquent_collect_variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_eloquent_collect_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/collect_on_eloquent_collect_variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_iterable_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_iterable_variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_mixed_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_mixed_variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_no_type_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_no_type_variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_stdClass_property.php: -------------------------------------------------------------------------------- 1 | something); -------------------------------------------------------------------------------- /src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_union_collection_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/CollectFunctionInCollectionInspection/nonMatches/collect_on_union_collection_type.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-array-variable-using-property-accessor.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-array-variable-using-property-accessor.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-array-variable-using-property-accessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-array-variable-using-property-accessor.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value-multi-statement.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value-multi-statement.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value-multi-statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value-multi-statement.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-key-value.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-this-variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-this-variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-this-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-this-variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable-used-twice.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable-used-twice.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable-used-twice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable-used-twice.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-outer-scope-variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-with-property-access.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-with-property-access.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-with-property-access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-with-property-access.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-without-braces.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-without-braces.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-without-braces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation-without-braces.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-string-interpolation.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-using-foreach-array-variable.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-using-foreach-array-variable.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-using-foreach-array-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-using-foreach-array-variable.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-value-only.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-value-only.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/foreach-value-only.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/foreach-value-only.php -------------------------------------------------------------------------------- /src/test/resources/inspections/ForeachToCollectionInspection/nonMatches/foreach-blade-directive.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/ForeachToCollectionInspection/nonMatches/foreach-blade-directive.blade.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten-to-flatmap-with-indentation.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten-to-flatmap-with-indentation.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten-to-flatmap-with-indentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten-to-flatmap-with-indentation.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap_with_other_method_calls.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap_with_other_method_calls.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap_with_other_method_calls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/map_flatten_to_flatmap_with_other_method_calls.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/nonMatches/map_flatten_depth_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/nonMatches/map_flatten_depth_2.php -------------------------------------------------------------------------------- /src/test/resources/inspections/MapFlattenToFlatMapInspection/nonMatches/map_flatten_depth_infinite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/MapFlattenToFlatMapInspection/nonMatches/map_flatten_depth_infinite.php -------------------------------------------------------------------------------- /src/test/resources/inspections/WhereFirstInspection/nonMatches/where-first-with-arguments-in-first.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/WhereFirstInspection/nonMatches/where-first-with-arguments-in-first.php -------------------------------------------------------------------------------- /src/test/resources/inspections/WhereFirstInspection/where-first-to-firstWhere.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/WhereFirstInspection/where-first-to-firstWhere.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/WhereFirstInspection/where-first-to-firstWhere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/WhereFirstInspection/where-first-to-firstWhere.php -------------------------------------------------------------------------------- /src/test/resources/inspections/WhereIsNotEmptyInspection/where-isNotEmpty-to-contains.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/WhereIsNotEmptyInspection/where-isNotEmpty-to-contains.after.php -------------------------------------------------------------------------------- /src/test/resources/inspections/WhereIsNotEmptyInspection/where-isNotEmpty-to-contains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/inspections/WhereIsNotEmptyInspection/where-isNotEmpty-to-contains.php -------------------------------------------------------------------------------- /src/test/resources/stubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/stubs.php -------------------------------------------------------------------------------- /src/test/resources/types/CollectionTypeProvider/CollectionTypeArraySyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/types/CollectionTypeProvider/CollectionTypeArraySyntax.php -------------------------------------------------------------------------------- /src/test/resources/types/CollectionTypeProvider/CollectionTypeGenericSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/types/CollectionTypeProvider/CollectionTypeGenericSyntax.php -------------------------------------------------------------------------------- /src/test/resources/types/HigherOrderMethodsTypeProvider/higherOrderMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/types/HigherOrderMethodsTypeProvider/higherOrderMethod.php -------------------------------------------------------------------------------- /src/test/resources/types/HigherOrderMethodsTypeProvider/higherOrderProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivernybroe/collector-intellij/HEAD/src/test/resources/types/HigherOrderMethodsTypeProvider/higherOrderProperty.php --------------------------------------------------------------------------------