CreditCard.php 116 B
Newer Older
<?php

namespace Hp\Patterns\AbstractFactory;

interface CreditCard
{
    public function pay(float $money): void;
}