xref: /plugin/dw2pdf/vendor/setasign/fpdi/src/Tfpdf/FpdfTpl.php (revision dc4d9dc689082c963d5c1d9ee679553326788c6e)
1<?php
2/**
3 * This file is part of FPDI
4 *
5 * @package   setasign\Fpdi
6 * @copyright Copyright (c) 2020 Setasign GmbH & Co. KG (https://www.setasign.com)
7 * @license   http://opensource.org/licenses/mit-license The MIT License
8 */
9
10namespace setasign\Fpdi\Tfpdf;
11
12use setasign\Fpdi\FpdfTplTrait;
13
14/**
15 * Class FpdfTpl
16 *
17 * We need to change some access levels and implement the setPageFormat() method to bring back compatibility to tFPDF.
18 *
19 * @package setasign\Fpdi\Tfpdf
20 */
21class FpdfTpl extends \tFPDF
22{
23    use FpdfTplTrait;
24}