我很困惑,因为在编写代码时我无法看到提示(使用Symfony 3 +)。
我希望看到提示,让我看到每个方法,功能等。我希望每次打字时都能看到提示。我尝试了一切,但没有任何帮助。
我正在使用NetBeans 8.2
这是我的示例功能:
/**
* Here should be description of function that will show in tip when calling
* that function. Also when I'll write class name i should get the list
* of available functions inside of it
*
* @Route("/", name="whatever")
*/
public function someAction()
{
return true;
}