javanoob

- 活动总数 19
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 7
-
创建于 IllegalStateException: read job must've been cancelled" when Creating PHP Files in PhpStorm
已回答My plugin creates PHP files through actions, but sometimes I get errors when creating and opening the created file in PhpStorm. Has anyone else experienced this or have any suggestions for troubles... -
创建于 Autocompletion Stops Working When Adding psi.referenceContributor
已回答I’m currently developing a Laravel IntelliJ plugin, and I’ve implemented both autocompletion and "Go to Declaration" functionality. Everything was working fine until I added the psi.referenceContri... -
创建于 How can I implement "Go to Declaration" functionality in a PHPStorm plugin?
已回答Heeeeyyy :)I am developing a PHPStorm plugin for Laravel that provides autocompletion for form request fields. I've successfully implemented the autocompletion, but I am now trying to add "Go to De... -
创建于 I do not get the correct Returntype for the PHP method?
已回答I'm developing a plugin for IntelliJ PHPStorm, and I'm trying to extract every method from a PHP class in a PsiFile along with their return types. However, I'm encountering an issue where the retur... -
创建于 PsiReferenceContributor is not working
已回答When attempting to use the "Go to Declaration" feature, the expected behavior of navigating to the declaration of a variable or function is not occurring as intended. Th Config Object contains the ... -
创建于 IntelliJ Plugin for PhpStorm: "WorkspaceFileIndex is not initialized yet" error during plugin execution
已回答I'm developing an IntelliJ plugin for PhpStorm, and I'm encountering an error during the execution of my plugin. It occurs every time I run my plugin. Could someone help me understand the root caus... -
创建于 Code completion with CompletionContributor
Hello!I am developing a plugin for PhpStorm, and I want to provide code completion when the user, for example, calls a method on a class like User::find(""). I want to suggest words which a define ...