xref: /plugin/dw2pdf/vendor/mpdf/mpdf/src/Output/Destination.php (revision d919a4deb87559e4dc9eca64d18065baaefd31a9)
1<?php
2
3namespace Mpdf\Output;
4
5class Destination
6{
7
8	const FILE = 'F';
9
10	const DOWNLOAD = 'D';
11
12	const STRING_RETURN = 'S';
13
14	const INLINE = 'I';
15}
16