Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ZapfDingbatsEncoding
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2declare(strict_types=1);
3/**
4 * Pop PHP Framework (https://www.popphp.org/)
5 *
6 * @link       https://github.com/popphp/popphp-framework
7 * @author     Nick Sagona, III <nick@popphp.org>
8 * @copyright  Copyright (c) 2009-2026 Nick Sagona, III
9 * @license    https://www.popphp.org/license     New BSD License
10 */
11
12/**
13 * @namespace
14 */
15namespace Pop\Pdf\Extract\Font\Encoding;
16
17/**
18 * Pdf extract ZapfDingbatsEncoding table class
19 *
20 * Minimal stub (space only) - dingbat/ornament glyphs are decorative, not
21 * meaningful extracted text, and a full table is deferred.
22 *
23 * @category   Pop
24 * @package    Pop\Pdf
25 * @author     Nick Sagona, III <nick@popphp.org>
26 * @copyright  Copyright (c) 2009-2026 Nick Sagona, III
27 * @license    https://www.popphp.org/license     New BSD License
28 * @version    6.0.0
29 */
30class ZapfDingbatsEncoding
31{
32
33    /**
34     * ZapfDingbatsEncoding byte-to-Unicode codepoint table
35     */
36    public const TABLE = [
37        0x20 => 0x0020,
38    ];
39
40}