Skip to content
Snippets Groups Projects
AccountInterface.php 159 B
Newer Older
<?php

namespace Hp\Patterns\Adapter;

interface AccountInterface
{
    public function deposit(float $amount);

    public function withdraw(float $amount);
}