Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| TimeModeCategory | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | class TimeModeCategory extends AppModel |
| 4 | { |
| 5 | // Time mode category IDs |
| 6 | public const BLITZ = 1; |
| 7 | public const FAST = 2; |
| 8 | public const SLOW = 3; |
| 9 | |
| 10 | public function __construct($id = false, $table = null, $ds = null) |
| 11 | { |
| 12 | $id['table'] = 'time_mode_category'; |
| 13 | parent::__construct($id, $table, $ds); |
| 14 | } |
| 15 | } |