Skip to content

Commit 08b71c3

Browse files
authored
Merge pull request #325 from cedricziel/eap-2020.2
2 parents aeeb6f3 + a2dbf0d commit 08b71c3

File tree

9 files changed

+18
-259
lines changed

9 files changed

+18
-259
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ cache:
1717

1818
matrix:
1919
include:
20-
- env: IDEA_VERSION="IU-2019.3.4" PHP_PLUGIN_VERSION="193.6911.15" PSI_VIEWER_PLUGIN_VERSION="193-SNAPSHOT" GRAMMAR_KIT_PLUGIN_VERSION="2019.3" SINCE_BUILD="193" UNTIL_BUILD="193.*"
21-
- env: IDEA_VERSION="IU-2020.1.1" PHP_PLUGIN_VERSION="201.7223.91" PSI_VIEWER_PLUGIN_VERSION="201-SNAPSHOT" GRAMMAR_KIT_PLUGIN_VERSION="2020.1" SINCE_BUILD="201" UNTIL_BUILD="201.*"
20+
- env: IDEA_VERSION="IU-2020.2" PHP_PLUGIN_VERSION="202.6397.94" PSI_VIEWER_PLUGIN_VERSION="202-SNAPSHOT" GRAMMAR_KIT_PLUGIN_VERSION="2020.2.1" SINCE_BUILD="202" UNTIL_BUILD="202.*"
2221

2322
before_install:
2423
- "export ORG_GRADLE_PROJECT_ideaVersion=${IDEA_VERSION}"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
}
1313

1414
plugins {
15-
id "org.jetbrains.intellij" version "0.4.18"
15+
id "org.jetbrains.intellij" version "0.4.21"
1616
id "org.jetbrains.grammarkit" version "${grammarKitPluginVersion}"
1717
id 'com.palantir.git-version' version "0.11.0"
1818
}

gradle.properties

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,19 @@ isEAP = false
66

77
jFlexRelease = 1.7.0-1
88

9-
grammarKitPluginVersion = 2020.1
10-
ideaVersion = IU-2020.1.1
11-
phpPluginVersion = 201.7223.91
12-
psiViewerPluginVersion = 201-SNAPSHOT
13-
customSinceBuild=201
14-
customUntilBuild=201.*
9+
grammarKitPluginVersion = 2020.2.1
10+
ideaVersion = IU-2020.2
11+
phpPluginVersion = 202.6397.94
12+
psiViewerPluginVersion = 202-SNAPSHOT
13+
customSinceBuild=202
14+
customUntilBuild=202.*
15+
16+
#grammarKitPluginVersion = 2020.1
17+
#ideaVersion = IU-2020.1.1
18+
#phpPluginVersion = 201.7223.91
19+
#psiViewerPluginVersion = 201-SNAPSHOT
20+
#customSinceBuild=201
21+
#customUntilBuild=201.*
1522

1623
#grammarKitPluginVersion = 2019.3
1724
#ideaVersion = IU-2019.3.4

lang-fluid/src/main/java/com/cedricziel/idea/fluid/codeInsight/ControllerLineMarkerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
public class ControllerLineMarkerProvider extends RelatedItemLineMarkerProvider {
1818
@Override
19-
protected void collectNavigationMarkers(@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo> result) {
19+
protected void collectNavigationMarkers(@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) {
2020
if (!PlatformPatterns.psiElement(PhpTokenTypes.IDENTIFIER).withParent(PlatformPatterns.psiElement(Method.class).withName(PlatformPatterns.string().endsWith("Action"))).accepts(element)) {
2121
return;
2222
}

lang-fluid/src/main/java/com/cedricziel/idea/fluid/codeInsight/TemplateLineMarkerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
public class TemplateLineMarkerProvider extends RelatedItemLineMarkerProvider {
1717
@Override
18-
protected void collectNavigationMarkers(@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo> result) {
18+
protected void collectNavigationMarkers(@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) {
1919
if (!PlatformPatterns.psiElement(FluidFile.class).accepts(element)) {
2020
return;
2121
}

typo3-cms/src/main/java/com/cedricziel/idea/typo3/codeInsight/RouteLineMarkerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
public class RouteLineMarkerProvider extends RelatedItemLineMarkerProvider {
2424
@Override
25-
protected void collectNavigationMarkers(@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo> result) {
25+
protected void collectNavigationMarkers(@NotNull PsiElement element, @NotNull Collection<? super RelatedItemLineMarkerInfo<?>> result) {
2626
if (!TYPO3CMSProjectSettings.isEnabled(element)) {
2727
return;
2828
}

typo3-cms/src/main/java/com/cedricziel/idea/typo3/extbase/persistence/ExtbaseModelCollectionReturnTypeProvider.java

Lines changed: 0 additions & 201 deletions
This file was deleted.

typo3-cms/src/main/resources/META-INF/plugin.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
<typeProvider4 implementation="com.cedricziel.idea.typo3.provider.ObjectManagerTypeProvider"/>
3535
<typeProvider4 implementation="com.cedricziel.idea.typo3.provider.PhpGlobalsTypeProvider"/>
3636

37-
<typeProvider4 implementation="com.cedricziel.idea.typo3.extbase.persistence.ExtbaseModelCollectionReturnTypeProvider"/>
3837
<typeProvider4 implementation="com.cedricziel.idea.typo3.contextApi.ContextTypeProvider"/>
3938
</extensions>
4039

typo3-cms/src/test/java/com/cedricziel/idea/typo3/extbase/persistence/ExtbaseModelCollectionReturnTypeProviderTest.java

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)