File tree 8 files changed +15
-12
lines changed
src/com/magento/idea/magento2plugin
8 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Run automated tests
5
5
6
6
on :
7
7
pull_request :
8
- branches : [ master, 3.2 .0-develop ]
8
+ branches : [ master, 4.0 .0-develop ]
9
9
10
10
jobs :
11
11
build-linux :
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0 ) .
6
6
7
+ ## 4.0.0
8
+
7
9
## 3.2.0
8
10
9
11
### Added
Original file line number Diff line number Diff line change 22
22
23
23
## Works with
24
24
25
- * PhpStorm >= 2020.3
25
+ * PhpStorm >= 2021.1
26
26
* JRE >= 11
27
27
28
28
## Features
Original file line number Diff line number Diff line change @@ -15,16 +15,16 @@ repositories {
15
15
}
16
16
17
17
group ' com.magento.idea'
18
- version ' 3.2 .0'
18
+ version ' 4.0 .0'
19
19
20
20
apply plugin : ' org.jetbrains.intellij'
21
21
apply plugin : ' java'
22
22
apply plugin : ' idea'
23
23
apply plugin : ' groovy'
24
24
apply plugin : ' org.jetbrains.changelog'
25
25
26
- def phpPluginVersion = System . getProperty(" phpPluginVersion" , " 203.5981.175 " )
27
- def ideaVersion = System . getProperty(" ideaVersion" , " 2020.3 " )
26
+ def phpPluginVersion = System . getProperty(" phpPluginVersion" , " 211.6693.111 " )
27
+ def ideaVersion = System . getProperty(" ideaVersion" , " 2021.1 " )
28
28
def javaVersion = 11
29
29
30
30
sourceCompatibility = javaVersion
@@ -41,7 +41,7 @@ intellij {
41
41
' properties' ,
42
42
' CSS' ,
43
43
' JavaScriptLanguage' ,
44
- ' com.intellij.lang.jsgraphql:2.7.0 ' ,
44
+ ' com.intellij.lang.jsgraphql:2.9.1 ' ,
45
45
' platform-images' ,
46
46
' copyright'
47
47
]
Original file line number Diff line number Diff line change 7
7
<idea-plugin require-restart =" true" >
8
8
<id >com.magento.idea.magento2plugin</id >
9
9
<name >Magento PhpStorm</name >
10
- <version >3.2 .0</version >
10
+ <version >4.0 .0</version >
11
11
<vendor url =" https://github.com/magento/magento2-phpstorm-plugin" >Magento Inc.</vendor >
12
12
13
13
<description ><![CDATA[
24
24
</change-notes >
25
25
26
26
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
27
- <idea-version since-build =" 203.5981.155 " />
27
+ <idea-version since-build =" 211.6693.111 " />
28
28
29
29
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
30
30
on how to target different products -->
Original file line number Diff line number Diff line change 17
17
import java .util .ArrayList ;
18
18
import java .util .Arrays ;
19
19
import java .util .List ;
20
- import org .jetbrains .annotations .Nls ;
21
20
import org .jetbrains .annotations .NotNull ;
22
21
23
22
public class CreateResolverClassQuickFix implements LocalQuickFix {
24
23
@ Override
25
- public @ Nls ( capitalization = Nls . Capitalization . Sentence ) @ NotNull String getFamilyName () {
24
+ public @ NotNull String getFamilyName () {
26
25
return new InspectionBundle ().message (
27
26
"inspection.graphql.schema.resolver.fix.family"
28
27
);
Original file line number Diff line number Diff line change 15
15
import org .jetbrains .annotations .NotNull ;
16
16
17
17
public class ObserverNameReferenceProvider extends PsiReferenceProvider {
18
+ @ NotNull
18
19
@ Override
19
- public PsiReference @ NotNull [] getReferencesByElement (
20
+ public PsiReference [] getReferencesByElement (
20
21
@ NotNull final PsiElement element ,
21
22
@ NotNull final ProcessingContext context
22
23
) {
Original file line number Diff line number Diff line change @@ -80,8 +80,9 @@ public int getVersion() {
80
80
return 1 ;
81
81
}
82
82
83
+ @ NotNull
83
84
@ Override
84
- public FileBasedIndex .@ NotNull InputFilter getInputFilter () {
85
+ public FileBasedIndex .InputFilter getInputFilter () {
85
86
return virtualFile -> (virtualFile .getFileType () == XmlFileType .INSTANCE
86
87
&& virtualFile .getNameWithoutExtension ().equals ("db_schema" ));
87
88
}
You can’t perform that action at this time.
0 commit comments