1 | <?php |
||
11 | class Inspector |
||
12 | { |
||
13 | /** |
||
14 | * Discover and return the bank number a file. |
||
15 | * |
||
16 | * @param string $path |
||
17 | * @return integer |
||
18 | */ |
||
19 | public static function bankNumberOf($path) |
||
27 | |||
28 | /** |
||
29 | * Discover and return a file CNAB version. |
||
30 | * |
||
31 | * @param string $path |
||
32 | * @return integer |
||
33 | * @throws \RangeException |
||
34 | */ |
||
35 | public static function fileVersionOf($path) |
||
49 | } |
||
50 |