Resources/Mpdf/Output/Destination.php
2025-04-02 14:15:06 +00:00

16 lines
148 B
PHP

<?php
namespace Mpdf\Output;
class Destination
{
const FILE = 'F';
const DOWNLOAD = 'D';
const STRING_RETURN = 'S';
const INLINE = 'I';
}