1 | <?php |
||
10 | trait FormattableTrait |
||
11 | { |
||
12 | abstract protected function getFormattable(): AccountNumber; |
||
13 | |||
14 | 92 | public function format(FormatterInterface $formatter): string |
|
18 | |||
19 | 91 | public function getNumber(): string |
|
23 | |||
24 | 86 | public function __toString(): string |
|
28 | |||
29 | 87 | public function get16(): string |
|
33 | |||
34 | public function prettyprint(): string |
||
38 | } |
||
39 |