Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| UpdateGroup | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace CirrusSearch; |
| 4 | |
| 5 | class UpdateGroup { |
| 6 | // Set of clusters receiving page updates |
| 7 | public const PAGE = "page"; |
| 8 | // Set of clusters receiving archive updates |
| 9 | public const ARCHIVE = "archive"; |
| 10 | // Set of clusters being checked by saneitizer |
| 11 | public const CHECK_SANITY = "check_sanity"; |
| 12 | // Set of clusters being fixed by saneitizer |
| 13 | public const SANEITIZER = "saneitize"; |
| 14 | // Set of clusters receiving weighted_tags updates |
| 15 | public const WEIGHTED_TAGS = "weighted_tags"; |
| 16 | } |