| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package dompdf |
| 4 |
* @link https://github.com/dompdf/dompdf |
| 5 |
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License |
| 6 |
*/ |
| 7 |
namespace Dompdf\FrameDecorator; |
| 8 |
|
| 9 |
use Dompdf\Dompdf; |
| 10 |
use Dompdf\Frame; |
| 11 |
|
| 12 |
/** |
| 13 |
* Decorates Frames for table row layout |
| 14 |
* |
| 15 |
* @package dompdf |
| 16 |
*/ |
| 17 |
class TableRow extends AbstractFrameDecorator |
| 18 |
{ |
| 19 |
/** |
| 20 |
* TableRow constructor. |
| 21 |
* @param Frame $frame |
| 22 |
* @param Dompdf $dompdf |
| 23 |
*/ |
| 24 |
function __construct(Frame $frame, Dompdf $dompdf) |
| 25 |
{ |
| 26 |
parent::__construct($frame, $dompdf); |
| 27 |
} |
| 28 |
} |
| 29 |
|