├── .github ├── FUNDING.yml └── workflows │ └── gradle.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MAINTENANCE.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── idea-php-annotation-plugin.iml ├── prepare-release.sh ├── settings.gradle.kts └── src ├── main ├── java │ ├── de │ │ └── espend │ │ │ └── idea │ │ │ └── php │ │ │ └── annotation │ │ │ ├── AnnotationIconProvider.java │ │ │ ├── AnnotationStubIndex.java │ │ │ ├── AnnotationUsageIndex.java │ │ │ ├── ApplicationSettings.java │ │ │ ├── PhpAnnotationIcons.java │ │ │ ├── Settings.java │ │ │ ├── annotator │ │ │ └── AnnotationDocTagAnnotator.java │ │ │ ├── completion │ │ │ ├── AnnotationCompletionContributor.java │ │ │ ├── PhpAnnotationCompletionConfidence.java │ │ │ ├── PhpAnnotationTypeCompletionProvider.java │ │ │ ├── insert │ │ │ │ ├── AnnotationPropertyInsertHandler.java │ │ │ │ ├── AnnotationTagInsertHandler.java │ │ │ │ └── AttributeAliasInsertHandler.java │ │ │ └── lookupelements │ │ │ │ ├── PhpAnnotationPropertyLookupElement.java │ │ │ │ └── PhpClassAnnotationLookupElement.java │ │ │ ├── dict │ │ │ ├── AnnotationProperty.java │ │ │ ├── AnnotationPropertyEnum.java │ │ │ ├── AnnotationTarget.java │ │ │ ├── PhpAnnotation.java │ │ │ ├── PhpDocCommentAnnotation.java │ │ │ ├── PhpDocTagAnnotation.java │ │ │ └── UseAliasOption.java │ │ │ ├── doctrine │ │ │ ├── action │ │ │ │ ├── DoctrineAddRepositoryGenerateAction.java │ │ │ │ ├── DoctrineClassGeneratorAction.java │ │ │ │ ├── DoctrineClassOrmAnnotationGenerateAction.java │ │ │ │ ├── DoctrineEmbeddedClassAnnotationGenerateAction.java │ │ │ │ └── DoctrinePropertyOrmAnnotationGenerateAction.java │ │ │ ├── inspection │ │ │ │ ├── DoctrineTypeDeprecatedInspection.java │ │ │ │ └── RepositoryClassInspection.java │ │ │ ├── intention │ │ │ │ ├── DoctrineOrmFieldIntention.java │ │ │ │ └── DoctrineOrmRepositoryIntention.java │ │ │ ├── navigation │ │ │ │ ├── ColumnNameCompletionProvider.java │ │ │ │ └── DoctrineAnnotationStaticCompletionProvider.java │ │ │ ├── reference │ │ │ │ ├── ClassCompletionProviderAbstract.java │ │ │ │ ├── DoctrineAnnotationFieldProvider.java │ │ │ │ ├── DoctrineAnnotationFieldTypeProvider.java │ │ │ │ ├── DoctrineAnnotationTypeProvider.java │ │ │ │ ├── DoctrineCustomIdGenerator.java │ │ │ │ ├── EmbeddedClassCompletionProvider.java │ │ │ │ └── references │ │ │ │ │ ├── DoctrinePhpClassFieldReference.java │ │ │ │ │ └── DoctrineRepositoryReference.java │ │ │ └── util │ │ │ │ └── DoctrineUtil.java │ │ │ ├── extension │ │ │ ├── PhpAnnotationCompletionProvider.java │ │ │ ├── PhpAnnotationDocTagAnnotator.java │ │ │ ├── PhpAnnotationDocTagGotoHandler.java │ │ │ ├── PhpAnnotationGlobalNamespacesLoader.java │ │ │ ├── PhpAnnotationReferenceProvider.java │ │ │ ├── PhpAnnotationUseAlias.java │ │ │ ├── PhpAnnotationVirtualProperties.java │ │ │ └── parameter │ │ │ │ ├── AnnotationCompletionProviderParameter.java │ │ │ │ ├── AnnotationDocTagGotoHandlerParameter.java │ │ │ │ ├── AnnotationGlobalNamespacesLoaderParameter.java │ │ │ │ ├── AnnotationPropertyParameter.java │ │ │ │ ├── AnnotationVirtualPropertyCompletionParameter.java │ │ │ │ ├── AnnotationVirtualPropertyTargetsParameter.java │ │ │ │ ├── PhpAnnotationDocTagAnnotatorParameter.java │ │ │ │ └── PhpAnnotationReferenceProviderParameter.java │ │ │ ├── inspection │ │ │ ├── AnnotationDeprecatedInspection.java │ │ │ ├── AnnotationDocBlockClassConstantNotFoundInspection.java │ │ │ ├── AnnotationDocBlockConstantDeprecatedInspection.java │ │ │ ├── AnnotationInspectionUtil.java │ │ │ ├── AnnotationMissingUseInspection.java │ │ │ ├── ImportUseForAnnotationQuickFix.java │ │ │ └── visitor │ │ │ │ └── PhpDocTagWithUsePsiElementVisitor.java │ │ │ ├── navigation │ │ │ ├── AnnotationGoToDeclarationHandler.java │ │ │ └── AnnotationUsageLineMarkerProvider.java │ │ │ ├── pattern │ │ │ └── AnnotationPattern.java │ │ │ ├── reference │ │ │ ├── AnnotationClassProvider.java │ │ │ ├── AnnotationPropertyValueReferenceContributor.java │ │ │ ├── DocTagNameAnnotationReferenceContributor.java │ │ │ └── references │ │ │ │ └── PhpClassReference.java │ │ │ ├── symfony │ │ │ └── SymfonyCompletionProvider.java │ │ │ ├── toolbox │ │ │ ├── AnnotationToolboxJsonFileCompletion.java │ │ │ ├── DefaultPropertyRegistrarMatcher.java │ │ │ ├── PropertyArrayRegistrarMatcher.java │ │ │ └── PropertyRegistrarMatcher.java │ │ │ ├── ui │ │ │ ├── SettingsForm.form │ │ │ ├── SettingsForm.java │ │ │ ├── UseAliasForm.form │ │ │ ├── UseAliasForm.java │ │ │ ├── UseAliasListForm.form │ │ │ └── UseAliasListForm.java │ │ │ └── util │ │ │ ├── AnnotationUtil.java │ │ │ ├── IdeUtil.java │ │ │ ├── PhpDocTagAnnotationVisitorUtil.java │ │ │ ├── PhpDocUtil.java │ │ │ ├── PhpElementsUtil.java │ │ │ ├── PhpIndexUtil.java │ │ │ ├── PhpPsiAttributesUtil.java │ │ │ ├── PluginUtil.java │ │ │ └── ide │ │ │ └── PluginErrorReporterSubmitter.java │ └── icons │ │ └── PhpAnnotationIcons.java └── resources │ ├── META-INF │ ├── change-notes.html │ ├── de.espend.idea.php.annotation-toolbox.xml │ ├── plugin.xml │ └── pluginIcon.svg │ ├── fileTemplates │ └── internal │ │ ├── Doctrine Entity Repository.php.ft │ │ ├── Doctrine Entity Repository.php.html │ │ ├── Doctrine Entity ServiceRepository.php.ft │ │ └── Doctrine Entity ServiceRepository.php.html │ ├── icons │ ├── doctrine.png │ └── doctrine@2x.png │ ├── inspectionDescriptions │ ├── AnnotationDeprecatedInspection.html │ ├── AnnotationDocBlockClassConstantNotFound.html │ ├── AnnotationDocBlockConstantDeprecated.html │ ├── AnnotationMissingUseInspection.html │ ├── DoctrineTypeDeprecatedInspection.html │ └── RepositoryClassInspection.html │ └── intentionDescriptions │ ├── .gitkeep │ ├── DoctrineOrmFieldIntention │ ├── after.php.template │ ├── before.php.template │ └── description.html │ └── DoctrineOrmRepositoryIntention │ ├── after.php.template │ ├── before.php.template │ └── description.html └── test └── java └── de └── espend └── idea └── php └── annotation └── tests ├── AnnotationLightCodeInsightFixtureTestCase.java ├── AnnotationStubIndexTest.java ├── AnnotationUsageIndexTest.java ├── annotation └── doctrine │ └── util │ ├── DoctrineUtilTest.java │ └── fixtures │ └── classes.php ├── completion ├── AnnotationCompletionContributorTest.java ├── PhpAnnotationTypeCompletionProviderTest.java └── fixtures │ └── classes.php ├── doctrine ├── action │ ├── DoctrineAddRepositoryGenerateActionTest.java │ ├── DoctrineClassOrmAnnotationGenerateActionTest.java │ ├── DoctrineEmbeddedClassAnnotationGenerateActionTest.java │ └── fixtures │ │ ├── DoctrineAddRepositoryGenerateAction.php │ │ └── classes.php ├── inspection │ ├── RepositoryClassInspectionTest.java │ └── fixtures │ │ └── classes.php ├── intention │ ├── DoctrineOrmFieldIntentionTest.java │ ├── DoctrineOrmRepositoryIntentionTest.java │ └── fixtures │ │ └── classes.php ├── navigation │ ├── DoctrineAnnotationStaticCompletionProviderTest.java │ └── fixtures │ │ └── classes.php ├── reference │ ├── DoctrineAnnotationFieldProviderTest.java │ ├── DoctrineCustomIdGeneratorTest.java │ ├── EmbeddedClassCompletionProviderTest.java │ └── fixtures │ │ └── classes.php └── util │ ├── DoctrineUtilTest.java │ └── fixtures │ ├── Type.php │ └── Types.php ├── fixtures ├── classes.php └── usages.php ├── inspection ├── AnnotationDeprecatedInspectionTest.java ├── AnnotationDocBlockClassConstantNotFoundInspectionTest.java ├── AnnotationDocBlockConstantDeprecatedInspectionTest.java ├── AnnotationMissingUseInspectionTest.java ├── DoctrineTypeDeprecatedInspectionTest.java └── fixtures │ ├── DoctrineTypeDeprecatedInspection.php │ ├── classes.php │ └── classes_deprecated.php ├── navigation ├── AnnotationGoToDeclarationHandlerTest.java ├── AnnotationUsageLineMarkerProviderTest.java ├── ColumnNameCompletionProviderTest.java └── fixtures │ ├── AnnotationUsageLineMarkerProvider.php │ ├── ColumnNameCompletionProvider.php │ └── classes.php ├── pattern └── AnnotationPatternTest.java ├── reference ├── DocTagNameAnnotationReferenceContributorTest.java └── fixtures │ └── classes.php ├── symfony ├── SymfonyCompletionProviderTest.java └── fixtures │ └── classes.php └── util ├── AnnotationUtilTest.java ├── PhpDocUtilTest.java ├── PhpPsiAttributesUtilTest.java └── fixtures ├── doctrine.php └── targets.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Haehnchen] 2 | custom: https://www.paypal.me/DanielEspendiller 3 | -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /idea-php-annotation-plugin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/idea-php-annotation-plugin.iml -------------------------------------------------------------------------------- /prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/prepare-release.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "PHP Annotations" 2 | -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/AnnotationIconProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/AnnotationIconProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/AnnotationStubIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/AnnotationStubIndex.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/AnnotationUsageIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/AnnotationUsageIndex.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ApplicationSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ApplicationSettings.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/PhpAnnotationIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/PhpAnnotationIcons.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/Settings.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/annotator/AnnotationDocTagAnnotator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/annotator/AnnotationDocTagAnnotator.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/AnnotationCompletionContributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/AnnotationCompletionContributor.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/PhpAnnotationCompletionConfidence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/PhpAnnotationCompletionConfidence.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/PhpAnnotationTypeCompletionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/PhpAnnotationTypeCompletionProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/insert/AnnotationPropertyInsertHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/insert/AnnotationPropertyInsertHandler.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/insert/AnnotationTagInsertHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/insert/AnnotationTagInsertHandler.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/insert/AttributeAliasInsertHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/insert/AttributeAliasInsertHandler.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/lookupelements/PhpAnnotationPropertyLookupElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/lookupelements/PhpAnnotationPropertyLookupElement.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/completion/lookupelements/PhpClassAnnotationLookupElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/completion/lookupelements/PhpClassAnnotationLookupElement.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/AnnotationProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/AnnotationProperty.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/AnnotationPropertyEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/AnnotationPropertyEnum.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/AnnotationTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/AnnotationTarget.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/PhpAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/PhpAnnotation.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/PhpDocCommentAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/PhpDocCommentAnnotation.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/PhpDocTagAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/PhpDocTagAnnotation.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/dict/UseAliasOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/dict/UseAliasOption.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineAddRepositoryGenerateAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineAddRepositoryGenerateAction.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineClassGeneratorAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineClassGeneratorAction.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineClassOrmAnnotationGenerateAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineClassOrmAnnotationGenerateAction.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineEmbeddedClassAnnotationGenerateAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrineEmbeddedClassAnnotationGenerateAction.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrinePropertyOrmAnnotationGenerateAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/action/DoctrinePropertyOrmAnnotationGenerateAction.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/inspection/DoctrineTypeDeprecatedInspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/inspection/DoctrineTypeDeprecatedInspection.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/inspection/RepositoryClassInspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/inspection/RepositoryClassInspection.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/intention/DoctrineOrmFieldIntention.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/intention/DoctrineOrmFieldIntention.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/intention/DoctrineOrmRepositoryIntention.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/intention/DoctrineOrmRepositoryIntention.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/navigation/ColumnNameCompletionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/navigation/ColumnNameCompletionProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/navigation/DoctrineAnnotationStaticCompletionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/navigation/DoctrineAnnotationStaticCompletionProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/ClassCompletionProviderAbstract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/ClassCompletionProviderAbstract.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineAnnotationFieldProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineAnnotationFieldProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineAnnotationFieldTypeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineAnnotationFieldTypeProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineAnnotationTypeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineAnnotationTypeProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineCustomIdGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/DoctrineCustomIdGenerator.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/EmbeddedClassCompletionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/EmbeddedClassCompletionProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/references/DoctrinePhpClassFieldReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/references/DoctrinePhpClassFieldReference.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/reference/references/DoctrineRepositoryReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/reference/references/DoctrineRepositoryReference.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/doctrine/util/DoctrineUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/doctrine/util/DoctrineUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationCompletionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationCompletionProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationDocTagAnnotator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationDocTagAnnotator.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationDocTagGotoHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationDocTagGotoHandler.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationGlobalNamespacesLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationGlobalNamespacesLoader.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationReferenceProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationReferenceProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationUseAlias.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationUseAlias.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationVirtualProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/PhpAnnotationVirtualProperties.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationCompletionProviderParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationCompletionProviderParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationDocTagGotoHandlerParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationDocTagGotoHandlerParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationGlobalNamespacesLoaderParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationGlobalNamespacesLoaderParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationPropertyParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationPropertyParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationVirtualPropertyCompletionParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationVirtualPropertyCompletionParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationVirtualPropertyTargetsParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/AnnotationVirtualPropertyTargetsParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/PhpAnnotationDocTagAnnotatorParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/PhpAnnotationDocTagAnnotatorParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/extension/parameter/PhpAnnotationReferenceProviderParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/extension/parameter/PhpAnnotationReferenceProviderParameter.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/AnnotationDeprecatedInspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/AnnotationDeprecatedInspection.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/AnnotationDocBlockClassConstantNotFoundInspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/AnnotationDocBlockClassConstantNotFoundInspection.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/AnnotationDocBlockConstantDeprecatedInspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/AnnotationDocBlockConstantDeprecatedInspection.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/AnnotationInspectionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/AnnotationInspectionUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/AnnotationMissingUseInspection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/AnnotationMissingUseInspection.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/ImportUseForAnnotationQuickFix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/ImportUseForAnnotationQuickFix.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/inspection/visitor/PhpDocTagWithUsePsiElementVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/inspection/visitor/PhpDocTagWithUsePsiElementVisitor.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/navigation/AnnotationGoToDeclarationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/navigation/AnnotationGoToDeclarationHandler.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/navigation/AnnotationUsageLineMarkerProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/navigation/AnnotationUsageLineMarkerProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/pattern/AnnotationPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/pattern/AnnotationPattern.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/reference/AnnotationClassProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/reference/AnnotationClassProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/reference/AnnotationPropertyValueReferenceContributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/reference/AnnotationPropertyValueReferenceContributor.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/reference/DocTagNameAnnotationReferenceContributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/reference/DocTagNameAnnotationReferenceContributor.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/reference/references/PhpClassReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/reference/references/PhpClassReference.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/symfony/SymfonyCompletionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/symfony/SymfonyCompletionProvider.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/toolbox/AnnotationToolboxJsonFileCompletion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/toolbox/AnnotationToolboxJsonFileCompletion.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/toolbox/DefaultPropertyRegistrarMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/toolbox/DefaultPropertyRegistrarMatcher.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/toolbox/PropertyArrayRegistrarMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/toolbox/PropertyArrayRegistrarMatcher.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/toolbox/PropertyRegistrarMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/toolbox/PropertyRegistrarMatcher.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ui/SettingsForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ui/SettingsForm.form -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ui/SettingsForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ui/SettingsForm.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ui/UseAliasForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ui/UseAliasForm.form -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ui/UseAliasForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ui/UseAliasForm.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ui/UseAliasListForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ui/UseAliasListForm.form -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/ui/UseAliasListForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/ui/UseAliasListForm.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/AnnotationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/AnnotationUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/IdeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/IdeUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/PhpDocTagAnnotationVisitorUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/PhpDocTagAnnotationVisitorUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/PhpDocUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/PhpDocUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/PhpElementsUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/PhpElementsUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/PhpIndexUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/PhpIndexUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/PhpPsiAttributesUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/PhpPsiAttributesUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/PluginUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/PluginUtil.java -------------------------------------------------------------------------------- /src/main/java/de/espend/idea/php/annotation/util/ide/PluginErrorReporterSubmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/de/espend/idea/php/annotation/util/ide/PluginErrorReporterSubmitter.java -------------------------------------------------------------------------------- /src/main/java/icons/PhpAnnotationIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/java/icons/PhpAnnotationIcons.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/change-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/META-INF/change-notes.html -------------------------------------------------------------------------------- /src/main/resources/META-INF/de.espend.idea.php.annotation-toolbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/META-INF/de.espend.idea.php.annotation-toolbox.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/internal/Doctrine Entity Repository.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/fileTemplates/internal/Doctrine Entity Repository.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/internal/Doctrine Entity Repository.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/fileTemplates/internal/Doctrine Entity Repository.php.html -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/internal/Doctrine Entity ServiceRepository.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/fileTemplates/internal/Doctrine Entity ServiceRepository.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/internal/Doctrine Entity ServiceRepository.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/fileTemplates/internal/Doctrine Entity ServiceRepository.php.html -------------------------------------------------------------------------------- /src/main/resources/icons/doctrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/icons/doctrine.png -------------------------------------------------------------------------------- /src/main/resources/icons/doctrine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/icons/doctrine@2x.png -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AnnotationDeprecatedInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/inspectionDescriptions/AnnotationDeprecatedInspection.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AnnotationDocBlockClassConstantNotFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/inspectionDescriptions/AnnotationDocBlockClassConstantNotFound.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AnnotationDocBlockConstantDeprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/inspectionDescriptions/AnnotationDocBlockConstantDeprecated.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AnnotationMissingUseInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/inspectionDescriptions/AnnotationMissingUseInspection.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/DoctrineTypeDeprecatedInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/inspectionDescriptions/DoctrineTypeDeprecatedInspection.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/RepositoryClassInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/inspectionDescriptions/RepositoryClassInspection.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DoctrineOrmFieldIntention/after.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/intentionDescriptions/DoctrineOrmFieldIntention/after.php.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DoctrineOrmFieldIntention/before.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/intentionDescriptions/DoctrineOrmFieldIntention/before.php.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DoctrineOrmFieldIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/intentionDescriptions/DoctrineOrmFieldIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DoctrineOrmRepositoryIntention/after.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/intentionDescriptions/DoctrineOrmRepositoryIntention/after.php.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DoctrineOrmRepositoryIntention/before.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/intentionDescriptions/DoctrineOrmRepositoryIntention/before.php.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/DoctrineOrmRepositoryIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/main/resources/intentionDescriptions/DoctrineOrmRepositoryIntention/description.html -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/AnnotationLightCodeInsightFixtureTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/AnnotationLightCodeInsightFixtureTestCase.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/AnnotationStubIndexTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/AnnotationStubIndexTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/AnnotationUsageIndexTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/AnnotationUsageIndexTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/annotation/doctrine/util/DoctrineUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/annotation/doctrine/util/DoctrineUtilTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/annotation/doctrine/util/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/annotation/doctrine/util/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/completion/AnnotationCompletionContributorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/completion/AnnotationCompletionContributorTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/completion/PhpAnnotationTypeCompletionProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/completion/PhpAnnotationTypeCompletionProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/completion/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/completion/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/DoctrineAddRepositoryGenerateActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/DoctrineAddRepositoryGenerateActionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/DoctrineClassOrmAnnotationGenerateActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/DoctrineClassOrmAnnotationGenerateActionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/DoctrineEmbeddedClassAnnotationGenerateActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/DoctrineEmbeddedClassAnnotationGenerateActionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/fixtures/DoctrineAddRepositoryGenerateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/fixtures/DoctrineAddRepositoryGenerateAction.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/action/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/inspection/RepositoryClassInspectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/inspection/RepositoryClassInspectionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/inspection/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/inspection/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/intention/DoctrineOrmFieldIntentionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/intention/DoctrineOrmFieldIntentionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/intention/DoctrineOrmRepositoryIntentionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/intention/DoctrineOrmRepositoryIntentionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/intention/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/intention/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/navigation/DoctrineAnnotationStaticCompletionProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/navigation/DoctrineAnnotationStaticCompletionProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/navigation/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/navigation/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/DoctrineAnnotationFieldProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/DoctrineAnnotationFieldProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/DoctrineCustomIdGeneratorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/DoctrineCustomIdGeneratorTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/EmbeddedClassCompletionProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/EmbeddedClassCompletionProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/reference/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/util/DoctrineUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/util/DoctrineUtilTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/util/fixtures/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/util/fixtures/Type.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/doctrine/util/fixtures/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/doctrine/util/fixtures/Types.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/fixtures/usages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/fixtures/usages.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationDeprecatedInspectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationDeprecatedInspectionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationDocBlockClassConstantNotFoundInspectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationDocBlockClassConstantNotFoundInspectionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationDocBlockConstantDeprecatedInspectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationDocBlockConstantDeprecatedInspectionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationMissingUseInspectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/AnnotationMissingUseInspectionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/DoctrineTypeDeprecatedInspectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/DoctrineTypeDeprecatedInspectionTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/fixtures/DoctrineTypeDeprecatedInspection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/fixtures/DoctrineTypeDeprecatedInspection.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/inspection/fixtures/classes_deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/inspection/fixtures/classes_deprecated.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/navigation/AnnotationGoToDeclarationHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/navigation/AnnotationGoToDeclarationHandlerTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/navigation/AnnotationUsageLineMarkerProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/navigation/AnnotationUsageLineMarkerProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/navigation/ColumnNameCompletionProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/navigation/ColumnNameCompletionProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/navigation/fixtures/AnnotationUsageLineMarkerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/navigation/fixtures/AnnotationUsageLineMarkerProvider.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/navigation/fixtures/ColumnNameCompletionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/navigation/fixtures/ColumnNameCompletionProvider.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/navigation/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/navigation/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/pattern/AnnotationPatternTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/pattern/AnnotationPatternTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/reference/DocTagNameAnnotationReferenceContributorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/reference/DocTagNameAnnotationReferenceContributorTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/reference/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/reference/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/symfony/SymfonyCompletionProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/symfony/SymfonyCompletionProviderTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/symfony/fixtures/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/symfony/fixtures/classes.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/util/AnnotationUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/util/AnnotationUtilTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/util/PhpDocUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/util/PhpDocUtilTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/util/PhpPsiAttributesUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/util/PhpPsiAttributesUtilTest.java -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/util/fixtures/doctrine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/util/fixtures/doctrine.php -------------------------------------------------------------------------------- /src/test/java/de/espend/idea/php/annotation/tests/util/fixtures/targets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haehnchen/idea-php-annotation-plugin/HEAD/src/test/java/de/espend/idea/php/annotation/tests/util/fixtures/targets.php --------------------------------------------------------------------------------