Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class LocatorHelper |
||
11 | { |
||
12 | private const LABEL_TO_VARIABLE_MAP = [ |
||
13 | "page" => "page", |
||
14 | "chapter" => "chapter-number", |
||
15 | "issue" => "folio", |
||
16 | "note" => "note", |
||
17 | "section" => "section", |
||
18 | "volume" => "volume" |
||
19 | ]; |
||
20 | |||
21 | 1 | public static function mapLocatorLabelToRenderVariable($label) |
|
26 |