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