4
Does anyone know the name of the PHP plugin that shows a description of the php function in my IDE when I put the cursor over it? By EX:
function:
str_replace();
By placing the mouse on it appears a description of what she does, and what she gets:
str_replace($find, $string, $replace) // essa função localiza uma string e a substitui na string informada. (pode ser em ingles essa descrição)
Basically what I’m looking for is this: (a description of the function within the editor itself)
Look for
code intelligence
. The Wictor response already contains the plugin you want for this in your editor.– Marcelo de Andrade