Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Alignment | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Pdf\Writer; |
| 6 | |
| 7 | /** |
| 8 | * Horizontal text alignment within the content column. |
| 9 | * (Justify is intentionally omitted in Phase 1 — adding it cleanly |
| 10 | * requires inter-word spacing adjustments the simple word-wrap |
| 11 | * algorithm does not yet perform.) |
| 12 | */ |
| 13 | enum Alignment |
| 14 | { |
| 15 | case Left; |
| 16 | case Center; |
| 17 | case Right; |
| 18 | } |