Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TableRowBox
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\HtmlToPdf\Box;
6
7/**
8 * `display: table-row`. Phase-1 layout positions each child cell
9 * horizontally with equal-share widths and the row's height equals the
10 * tallest cell.
11 */
12final class TableRowBox extends Box {}