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