| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | class Mt940 extends Banking |
||
| 12 | { |
||
| 13 | /** @var Banking\Mt940\Engine */ |
||
| 14 | protected $engine; |
||
| 15 | |||
| 16 | /** @var bool */ |
||
| 17 | public static $removeIBAN = true; // defaults to true for BC |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Parse the given string into an array of Banking\Statement objects. |
||
| 21 | * |
||
| 22 | * @param string $string |
||
| 23 | * @param Banking\Mt940\Engine $engine |
||
| 24 | * |
||
| 25 | * @return \Kingsquare\Banking\Statement[] |
||
| 26 | */ |
||
| 27 | public function parse($string, Banking\Mt940\Engine $engine = null) |
||
| 48 |