Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace GrowthExperiments\MentorDashboard\MentorTools; |
4 | |
5 | /** |
6 | * Interface containing available mentor weights |
7 | */ |
8 | interface IMentorWeights { |
9 | |
10 | public const WEIGHT_NONE = 0; |
11 | public const WEIGHT_LOW = 1; |
12 | public const WEIGHT_NORMAL = 2; |
13 | public const WEIGHT_HIGH = 4; |
14 | |
15 | public const WEIGHTS = [ |
16 | self::WEIGHT_NONE, |
17 | self::WEIGHT_LOW, |
18 | self::WEIGHT_NORMAL, |
19 | self::WEIGHT_HIGH |
20 | ]; |
21 | |
22 | } |