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 AutoModerator\Config; |
| 4 | |
| 5 | interface ICustomReadConstants { |
| 6 | /** |
| 7 | * @var int Bypass any sort of cache, but read from replica DB. |
| 8 | * |
| 9 | * This is a non-standard flag that's not exposed to classes WikiPageConfigLoader |
| 10 | * depends on to read wiki pages. |
| 11 | * |
| 12 | * Can be used together with standard IDBAccessObject flags. |
| 13 | * |
| 14 | * @hack 2**20 is a high power of two that's unlikely to be ever added to IDBAccessObject |
| 15 | * flags. |
| 16 | */ |
| 17 | public const READ_UNCACHED = 2 ** 20; |
| 18 | } |