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\Tfpdf; 12 13use setasign\Fpdi\FpdfTrait; 14use setasign\Fpdi\FpdiTrait; 15 16/** 17 * Class Fpdi 18 * 19 * This class let you import pages of existing PDF documents into a reusable structure for tFPDF. 20 */ 21class Fpdi extends FpdfTpl 22{ 23 use FpdiTrait; 24 use FpdfTrait; 25 26 /** 27 * FPDI version 28 * 29 * @string 30 */ 31 const VERSION = '2.6.4'; 32} 33