Skip to content

Commit 015de72

Browse files
committed
[T3CMS] Upgrade platform to 2020.1.1
Fixes: #305
1 parent c9319f4 commit 015de72

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cache:
1818
matrix:
1919
include:
2020
- 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" PHP_PLUGIN_VERSION="201.6668.153" PSI_VIEWER_PLUGIN_VERSION="201-SNAPSHOT" GRAMMAR_KIT_PLUGIN_VERSION="2020.1" SINCE_BUILD="201" UNTIL_BUILD="201.*"
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.*"
2222

2323
before_install:
2424
- "export ORG_GRADLE_PROJECT_ideaVersion=${IDEA_VERSION}"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ isEAP = false
77
jFlexRelease = 1.7.0-1
88

99
grammarKitPluginVersion = 2020.1
10-
ideaVersion = IU-2020.1
11-
phpPluginVersion = 201.6668.153
10+
ideaVersion = IU-2020.1.1
11+
phpPluginVersion = 201.7223.91
1212
psiViewerPluginVersion = 201-SNAPSHOT
1313
customSinceBuild=201
1414
customUntilBuild=201.*

typo3-cms/src/main/java/com/cedricziel/idea/typo3/provider/AbstractServiceLocatorTypeProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public PhpType complete(String s, Project project) {
2222
}
2323

2424
public Collection<? extends PhpNamedElement> getBySignature(String expression, Set<String> visited, int depth, Project project) {
25-
int endIndex = expression.lastIndexOf("%");
25+
int endIndex = expression.lastIndexOf(TRIM_KEY);
2626
if (endIndex == -1) {
2727
return Collections.emptySet();
2828
}

0 commit comments

Comments
 (0)