| 1 | <?php |
||
| 10 | class PaymentService |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var PaymentSystemInterface |
||
| 14 | */ |
||
| 15 | private $paymentSystem; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * PaymentService constructor. |
||
| 19 | * @param PaymentSystemInterface $paymentSystem |
||
| 20 | */ |
||
| 21 | 3 | public function __construct(PaymentSystemInterface $paymentSystem) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param int $amount |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | 3 | public function makePayment(int $amount) |
|
| 34 | } |
||
| 35 |