File tree 3 files changed +10
-9
lines changed
src/com/magento/idea/magento2plugin/generation/php
3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 4
4
*/
5
5
6
6
plugins {
7
- id ' org.jetbrains.intellij' version ' 1.1.4 '
7
+ id ' org.jetbrains.intellij' version ' 1.5.2 '
8
8
id ' checkstyle'
9
9
id ' pmd'
10
10
id ' org.jetbrains.changelog' version ' 1.2.1'
@@ -23,8 +23,8 @@ apply plugin: 'idea'
23
23
apply plugin : ' groovy'
24
24
apply plugin : ' org.jetbrains.changelog'
25
25
26
- def phpPluginVersion = System . getProperty(" phpPluginVersion" , " 212.5080.55 " )
27
- def ideaVersion = System . getProperty(" ideaVersion" , " 2021 .2.1" )
26
+ def phpPluginVersion = System . getProperty(" phpPluginVersion" , " 222.3739.45 " )
27
+ def ideaVersion = System . getProperty(" ideaVersion" , " 2022 .2.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:3.1.2 ' ,
44
+ ' com.intellij.lang.jsgraphql:3.2.1 ' ,
45
45
' platform-images' ,
46
46
' copyright'
47
47
]
Original file line number Diff line number Diff line change 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 =" 212.5080.55 " />
27
+ <idea-version since-build =" 222.3739.54 " />
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 2
2
* Copyright © Magento, Inc. All rights reserved.
3
3
* See COPYING.txt for license details.
4
4
*/
5
+
5
6
package com .magento .idea .magento2plugin .generation .php ;
6
7
7
8
import com .intellij .ide .util .projectWizard .WizardContext ;
8
9
import com .intellij .platform .ProjectTemplate ;
9
10
import com .intellij .platform .ProjectTemplatesFactory ;
10
- import com .jetbrains .php .config .generation .PhpEmptyTemplatesFactory ;
11
+ import com .jetbrains .php .config .generation .PhpEmptyProjectGenerator ;
11
12
import icons .PhpIcons ;
13
+ import javax .swing .Icon ;
12
14
import org .jetbrains .annotations .NotNull ;
13
15
import org .jetbrains .annotations .Nullable ;
14
- import javax .swing .Icon ;
15
16
16
17
public class MagentoTemplatesFactory extends ProjectTemplatesFactory {
17
18
public MagentoTemplatesFactory () {
18
19
}
19
20
20
21
@ NotNull
21
22
public String [] getGroups () {
22
- return new String []{PhpEmptyTemplatesFactory .PHP_PROJECT_TEMPLATE_GROUP };
23
+ return new String []{PhpEmptyProjectGenerator .PHP_PROJECT_TEMPLATE_GROUP };
23
24
}
24
25
25
26
public Icon getGroupIcon (String group ) {
26
- return PhpIcons .Php_icon ;
27
+ return PhpIcons .PhpIcon ;
27
28
}
28
29
29
30
@ NotNull
You can’t perform that action at this time.
0 commit comments