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 on it? By EX:
function:
str_replace();
When you put the mouse over it, a description of what it does, and what it does:
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 inside the editor itself)