Adel
Adel
Yes, we have this task. There are some serious technical issues. Hope they will be fixed somehow.
Laravel Idea can't fetch this dynamic components registration. It doesn't run PHP code itself.
Thank you, Chris! I don't have time to use all these new features, so each issue like that helps a lot. I'll try to implement it.
Does it happen only with Laravel Idea turned on? Maybe it's an issue with XmlTag descriptor... I've found this code in the IntelliJ sources (RequiredAttributesInspectionBase.java): ``` XmlAttributeDescriptor[] attributeDescriptors = elementDescriptor.getAttributesDescriptors(tag);...
Also there: ``` private static boolean hasAttribute(XmlTag tag, String attrName) { final XmlAttribute attribute = tag.getAttribute(attrName); if (attribute == null) return false; if (attribute.getValueElement() != null) return true; if (!(tag...
There is an action you can use in the view. Right click > Go To > View Usages. You can assign a shortcut for it here: For class... we will...
It's a known issue. PhpStorm doesn't try to find any other `User` class implementation if it is already in this file. This code will work correctly in any other file....
I've implemented a class creation for the next version. Other cases are rare, so they can be created in the PhpStorm standard way.