| 1 | <?php |
||
| 6 | abstract class NumeralGenerator implements Cases, Gender |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @abstract |
||
| 10 | * @param int $number |
||
| 11 | * |
||
| 12 | * @return string[] |
||
| 13 | * @phpstan-return array<string, string> |
||
| 14 | */ |
||
| 15 | public static function getCases($number) { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @abstract |
||
| 21 | * @param int $number |
||
| 22 | * @param string $case |
||
| 23 | * |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public static function getCase($number, $case) { |
||
| 29 | } |
||
| 30 |