intelephense-docs
intelephense-docs copied to clipboard
Documentation for the Intelephense PHP language server
Hi, First of all thank you very much for this awesome package. Your package is one of many reasons why I moved from Sublimetext to VSCode (don't mean to start...
I am trying to setup the language server with kate editor. Here is my config ``` { "servers": { "php": { "command": ["intelephense", "--stdio"], "rootIndicationFileNames": ["composer.json"], "highlightingModeRegex": "^PHP.*$", "settings": {...
I was wondering about the possibility of running Intelephense as a command line tool like phplint, to implement a git pre-commit hook for validating the code before commiting it. Is...
Hello, Everything is in the title, I have a PC that I will not use anymore and I would like to remove my licence, is there a way to do...
Hi, in my Sublime Text 4 Intelephense seems to be throwing errors on all my `match` codes even though they work perfectly fine. Here's a working snippet from a Laravel...
Hey. I'm facing with an issue when LS couldn't find a class in the workspace. My code structure: ``` www/ ...pages/ ......some_class.php tests/ ...pages/ ......SomeClassTest.php ``` **some_class.php:** ``` class Someclass...
https://github.com/bmewburn/intelephense-docs/blob/25dd5c348d3d019292c2294d9bf6348f98171790/installation.md#L59 Do you check `{os.homedir()}/intelephense/licence.txt` or `{os.homedir()}/intelephense/license.txt`
Hi, functions that act as factories for objects, does not resolve to the objects; e.g. in Laravel ```php $user = auth()->user(); ``` the intelephense does not recognize the function `user`...
When I try to execute the following command: ```bash intelephense "--socket=127.0.0.1:9901" ``` The process exits immediately.
The Implementation is not found when method is implemented in a trait used in a class that implements the interface an example: ```php interface EngineInterface { public function run(): void;...