Representation of parameters for custom functions in Visual Studio code

Is there a way in Visual Studio Code to force IntelliSense to display the parameters of my user-defined function in my php file?
It seems to work with other languages (source: telerik.com )Link

+7
source share
1 answer

As of now, this is not possible initially. Even the popular PHP IntelliSense extension does not support this.

Change . It looks like the PHP IntelliSense extension has now been updated to support signature assistance:

PHP Intelephense, .

enter image description here

PHP 7 , :

enter image description here

- DocString, . PHP DocBlocker , .

enter image description here

+5

Source: https://habr.com/ru/post/1015849/


All Articles