1<?php 2 3/** 4 * This file is part of FPDI 5 * 6 * @package setasign\Fpdi 7 * @copyright Copyright (c) 2024 Setasign GmbH & Co. KG (https://www.setasign.com) 8 * @license http://opensource.org/licenses/mit-license The MIT License 9 */ 10 11namespace setasign\Fpdi; 12 13/** 14 * Class FpdfTpl 15 * 16 * This class adds a templating feature to FPDF. 17 */ 18class FpdfTpl extends \FPDF 19{ 20 use FpdfTplTrait; 21} 22