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