File tree 1 file changed +9
-0
lines changed
src/fr/adrienbrault/idea/symfony2plugin/config
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,15 @@ public class SymfonyPhpReferenceContributor extends PsiReferenceContributor {
39
39
new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ QueryBuilder" , "update" ),
40
40
new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ QueryBuilder" , "delete" ),
41
41
new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ QueryBuilder" , "from" ),
42
+
43
+ // doctrine 2.5 methods
44
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "getEntityCacheRegion" ),
45
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "containsEntity" ),
46
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "evictEntity" ),
47
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "evictEntityRegion" ),
48
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "containsCollection" ),
49
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "evictCollection" ),
50
+ new MethodMatcher .CallToSignature ("\\ Doctrine\\ ORM\\ Cache" , "evictCollectionRegion" ),
42
51
};
43
52
44
53
public static MethodMatcher .CallToSignature [] TEMPLATE_SIGNATURES = new MethodMatcher .CallToSignature [] {
You can’t perform that action at this time.
0 commit comments