Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class Parser |
||
12 | { |
||
13 | /** |
||
14 | * Load an OFX file into this parser by way of a filename |
||
15 | * @throws InvalidArgumentException |
||
16 | * @throws Exception |
||
17 | */ |
||
18 | public function loadFromFile(string $ofxFile): Ofx |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Load an OFX by directly using the text content |
||
29 | * @throws Exception |
||
30 | */ |
||
31 | public function loadFromString(string $filePath): Ofx |
||
39 |