Package fr.adrienbrault.idea.symfony2plugin.form.dict

Examples of fr.adrienbrault.idea.symfony2plugin.form.dict.FormClass


        PhpReturn phpReturn = PsiTreeUtil.findChildOfType(method, PhpReturn.class);
        if(phpReturn != null) {
            PhpPsiElement returnValue = phpReturn.getFirstPsiChild();
            if(returnValue instanceof StringLiteralExpression && formTypeNamesList.contains(((StringLiteralExpression) returnValue).getContents())) {
                extendedTypeClasses.add(new FormClass(FormClassEnum.EXTENSION, containingClass, isWeak));
            }
        }

    }
View Full Code Here

TOP

Related Classes of fr.adrienbrault.idea.symfony2plugin.form.dict.FormClass

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.