Is there a shortcut in the Apache Netbeans IDE (e.g. for PHP) to create a method (with inputs etc.) like in Visual Studio, as shown in the following answer:
Is there a shortcut in Visual Studio to create a method?
Visual Studio example
IDE hint:
The VS shortcut generates a method like this:
    private static void MySomeMethod(int a, string b)
    {
        throw new NotImplementedException();
    }
Sorry, I copied the infos from the answer to explain my question, because I don't have Visual Studio on my current PC.

 
     
    