File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
src/com/magento/idea/magento2plugin/generation/php Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 44 */
55
66plugins {
7- id ' org.jetbrains.intellij' version ' 1.1.4 '
7+ id ' org.jetbrains.intellij' version ' 1.5.2 '
88 id ' checkstyle'
99 id ' pmd'
1010 id ' org.jetbrains.changelog' version ' 1.2.1'
@@ -23,8 +23,8 @@ apply plugin: 'idea'
2323apply plugin : ' groovy'
2424apply plugin : ' org.jetbrains.changelog'
2525
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" )
2828def javaVersion = 11
2929
3030sourceCompatibility = javaVersion
@@ -41,7 +41,7 @@ intellij {
4141 ' properties' ,
4242 ' CSS' ,
4343 ' JavaScriptLanguage' ,
44- ' com.intellij.lang.jsgraphql:3.1.2 ' ,
44+ ' com.intellij.lang.jsgraphql:3.2.1 ' ,
4545 ' platform-images' ,
4646 ' copyright'
4747 ]
Original file line number Diff line number Diff line change 2424 </change-notes >
2525
2626 <!-- 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 " />
2828
2929 <!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
3030 on how to target different products -->
Original file line number Diff line number Diff line change 22 * Copyright © Magento, Inc. All rights reserved.
33 * See COPYING.txt for license details.
44 */
5+
56package com .magento .idea .magento2plugin .generation .php ;
67
78import com .intellij .ide .util .projectWizard .WizardContext ;
89import com .intellij .platform .ProjectTemplate ;
910import com .intellij .platform .ProjectTemplatesFactory ;
10- import com .jetbrains .php .config .generation .PhpEmptyTemplatesFactory ;
11+ import com .jetbrains .php .config .generation .PhpEmptyProjectGenerator ;
1112import icons .PhpIcons ;
13+ import javax .swing .Icon ;
1214import org .jetbrains .annotations .NotNull ;
1315import org .jetbrains .annotations .Nullable ;
14- import javax .swing .Icon ;
1516
1617public class MagentoTemplatesFactory extends ProjectTemplatesFactory {
1718 public MagentoTemplatesFactory () {
1819 }
1920
2021 @ NotNull
2122 public String [] getGroups () {
22- return new String []{PhpEmptyTemplatesFactory .PHP_PROJECT_TEMPLATE_GROUP };
23+ return new String []{PhpEmptyProjectGenerator .PHP_PROJECT_TEMPLATE_GROUP };
2324 }
2425
2526 public Icon getGroupIcon (String group ) {
26- return PhpIcons .Php_icon ;
27+ return PhpIcons .PhpIcon ;
2728 }
2829
2930 @ NotNull
You can’t perform that action at this time.
0 commit comments