Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class PostScriptGlyphs |
||
8 | { |
||
9 | private static $glyphs = null; |
||
10 | |||
11 | public static function getGlyphs() |
||
12 | { |
||
13 | if (null === self::$glyphs) { |
||
14 | self::$glyphs = json_decode(file_get_contents(__DIR__.'/PostScriptGlyphs.json'), true); |
||
15 | } |
||
16 | |||
17 | return self::$glyphs; |
||
18 | } |
||
19 | |||
20 | public static function getCodePoint($glyph) |
||
23 | } |
||
24 | } |
||
25 |