I want to add methods of this interface to my class automatically but I couldn't find a way.
I use Visual Studio Code editor. I don't want to use PhpStorm or any other IDE/editor, so I really need to solve this problem.
My code :
<?php
use App\Payment\PaymentInterface;
class MyTest implements PaymentInterface
{
}
When I type implement PaymentInterface, I want the IDE to automatically add the method of my interface to my class.
Is this possible?