-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scan documented properties like "Products[]" #2
Comments
Update issue |
hey @xskif, sorry but your mind is playing tricks on you. The following code is the regular expression that is matched against @Property. It hasn't changed from Komodos code:
As you can see, the array syntax is not supported, only word-characters and backslash (namespaces) are considered! So the following is working:
This is actually a feature request! |
Really? I was pretty sure that this feature already working on. Strange. |
Because of this "feature" didn't work, i have a bug with autocompletion. $user->orders[0]->(there is some User class methods, instead of empty completion or Order class methods) |
The code above works in client code like:
because of magic getter method.
SublimeCodeIntel and SublimeCodeIntel3 scaned all doc blocks properties and give me tooltip like property name, but now, after i install today CodeComplice and clean up index, it's broke!
Also i don't see anymore some tooltips if i type something like this:
it's must to complite like
products
becauseAccount
class have@property Product[] $products
in doc blockThe text was updated successfully, but these errors were encountered: