18 lines
303 B
PHP
18 lines
303 B
PHP
<?php
|
|
|
|
namespace App\Interface\Test\Bridge;
|
|
|
|
interface PaymentInterface
|
|
{
|
|
/**
|
|
* @param float $amount
|
|
* @return array
|
|
*/
|
|
public function pay(float $amount): array;
|
|
|
|
/**
|
|
* @param float $amount
|
|
* @return array
|
|
*/
|
|
public function refund(float $amount): array;
|
|
} |