whisper-money/app/Services/Banking/Formatters/BankFormatter.php

11 lines
190 B
PHP

<?php
namespace App\Services\Banking\Formatters;
interface BankFormatter
{
public function matches(string $bankName): bool;
public function format(string $description): string;
}