test function not generated to Razorpay class
You need to implement test in the class(es) that implement the Interface; they don't come for free!?!?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
What methods would you consider essential in a PaymentGatewayInterface for Laravel Filament
namespace App\Filament\Support\Contracts;
interface PaymentGateway
{
public function test();
}
namespace App\Filament\Support;
use App\Filament\Support\Contracts\PaymentGateway;
class Razorpay implements PaymentGateway
{
}
interface is not working and test function not generated to Razorpay class
Please or to participate in this conversation.