Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| RecordingReviewValue | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace MediaWiki\WikispeechSpeechDataCollector\Domain; |
| 4 | |
| 5 | /** |
| 6 | * @file |
| 7 | * @ingroup Extensions |
| 8 | * @license GPL-2.0-or-later |
| 9 | */ |
| 10 | |
| 11 | /** |
| 12 | * What a {@link User} thought about the {@link Recording} of another user. |
| 13 | * Stored in a {@link RecordingReview}. |
| 14 | * |
| 15 | * @since 0.1.0 |
| 16 | */ |
| 17 | class RecordingReviewValue { |
| 18 | public const NONE = 0; |
| 19 | public const THUMB_UP = 1; |
| 20 | public const THUMB_DOWN = 2; |
| 21 | public const UNCERTAIN = 3; |
| 22 | public const SKIPPED = 4; |
| 23 | } |