OtherAccountInterface.php 207 B
Newer Older
<?php

namespace Hp\Patterns\Adapter;

interface OtherAccountInterface
{
    public function blockAccount(): void;

    public function deposit(float $amount);

    public function withdraw(float $amount);
}