Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class Version |
||
23 | { |
||
24 | // Constants |
||
25 | // ========================================================================= |
||
26 | |||
27 | const LEAGUE_CSV_PACKAGE = 'league/csv'; |
||
28 | |||
29 | // Public Static Methods |
||
30 | // ========================================================================= |
||
31 | |||
32 | /** |
||
33 | * Return the API version for `league/csv` package |
||
34 | * |
||
35 | * @return int API version (or 0 for not installed) |
||
36 | */ |
||
37 | public static function getLeagueCsvVersion(): int |
||
58 |