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
3namespace CirrusSearch;
4
5class 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}