Conditions | 1 |
Paths | 1 |
Total Lines | 32 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function specialNumbers(): array |
||
18 | { |
||
19 | return [ |
||
20 | 2 => [ |
||
21 | 'half', |
||
22 | ], |
||
23 | 3 => [ |
||
24 | 'third', |
||
25 | ], |
||
26 | 7 => [ |
||
27 | 'week', |
||
28 | ], |
||
29 | 10 => [ |
||
30 | 'tenth', |
||
31 | 'decile', |
||
32 | ], |
||
33 | 24 => [ |
||
34 | 'hours', |
||
35 | ], |
||
36 | 28 => [ |
||
37 | 'February', |
||
38 | ], |
||
39 | 60 => [ |
||
40 | 'second', |
||
41 | 'minute', |
||
42 | ], |
||
43 | 100 => [ |
||
44 | 'percent', |
||
45 | 'centile' |
||
46 | ], |
||
47 | ]; |
||
48 | } |
||
49 | } |
||
50 |