8 lines
130 B
PHP
8 lines
130 B
PHP
<?php
|
|
|
|
namespace App\Interface\Test\Adapter;
|
|
|
|
interface PaymentGatewayInterface
|
|
{
|
|
public function pay(float $amount): array;
|
|
} |