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/**
4 * Key-encoding methods for object caching (BagOStuff and WANObjectCache)
5 *
6 * @ingroup Cache
7 * @since 1.34
8 */
9interface IStoreKeyEncoder {
10    /**
11     * @see BagOStuff::makeGlobalKey
12     * @param string $keygroup
13     * @param string|int ...$components
14     * @return string
15     */
16    public function makeGlobalKey( $keygroup, ...$components );
17
18    /**
19     * @see BagOStuff::makeKey
20     * @param string $keygroup
21     * @param string|int ...$components
22     * @return string
23     */
24    public function makeKey( $keygroup, ...$components );
25}