<?php namespace bank; interface IBank { public function match($line) : bool; public function convert($line) : array; }