<?php namespace Hp\Patterns\Adapter; interface AccountInterface { public function deposit(float $amount); public function withdraw(float $amount); }