javanoob
- Total activity 19
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created IllegalStateException: read job must've been cancelled" when Creating PHP Files in PhpStorm
AnsweredMy 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... -
Created Autocompletion Stops Working When Adding psi.referenceContributor
AnsweredI’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... -
Created How can I implement "Go to Declaration" functionality in a PHPStorm plugin?
AnsweredHeeeeyyy :)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... -
Created I do not get the correct Returntype for the PHP method?
AnsweredI'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... -
Created PsiReferenceContributor is not working
AnsweredWhen 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 ... -
Created IntelliJ Plugin for PhpStorm: "WorkspaceFileIndex is not initialized yet" error during plugin execution
AnsweredI'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... -
Created 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 ...